NoSuchMethod error
Hi All,
I am facing a java.lang.NoSuchMethodError in my code.
FileChannel fCh= (new RandomAccessFile(lockFile, "rw")).getChannel();
compile time i am not getting any server ,but when i am running t he code on server i am getting this error.
Eclipse compiler compliance level =1.4
Generate .class files compatibily=1.2
Server Java : j2sdk1.4.2_09__
i have tried to read the API of RandomAccessFile class.
This class is there sicne JDK 1.0
So i am not sure why is that the problem.
Please help

