-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
beta2
-
generic
-
windows_2000
-
Verified
Fix for bugID 4463693 doesn't work properly on windows platforms .field name in DatagramChannelImpl.c needs to be modified .
test program
---------------------------
import java.io.*;
import java.nio.channels.Selector ;
import java.nio.channels.spi.SelectorProvider ;
import java.nio.channels.spi.AbstractSelector ;
public class openTest {
public static void main(String[] args) throws Exception {
openTest tests = new openTest();
tests.go();
}
public void go() throws Exception {
try {
int portNum = 9999;
SelectorProvider sp = SelectorProvider.provider() ;
java.nio.channels.DatagramChannel dc = sp.openDatagramChannel(portNum);
System.out.println("DatagramChannel: " + dc);
} catch (Exception e) {
System.out.println("Exception: " +e);
}
}
}
-----------------------------
test output
----------------------------
Exception in thread "main" java.lang.NoSuchFieldError: sender_ia
at sun.nio.ch.DatagramChannelImpl.initIDs(Native Method)
at sun.nio.ch.DatagramChannelImpl.<clinit>(DatagramChannelImpl.java:456)
at sun.nio.ch.SelectorProviderImpl.openDatagramChannel(SelectorProviderImpl.java:25)
at openTest.go(openTest.java:20)
at openTest.main(openTest.java:13)
-------------------------------------
-------------------------
Verified in release b72
sreejith.ak@India 2001-07-24
test program
---------------------------
import java.io.*;
import java.nio.channels.Selector ;
import java.nio.channels.spi.SelectorProvider ;
import java.nio.channels.spi.AbstractSelector ;
public class openTest {
public static void main(String[] args) throws Exception {
openTest tests = new openTest();
tests.go();
}
public void go() throws Exception {
try {
int portNum = 9999;
SelectorProvider sp = SelectorProvider.provider() ;
java.nio.channels.DatagramChannel dc = sp.openDatagramChannel(portNum);
System.out.println("DatagramChannel: " + dc);
} catch (Exception e) {
System.out.println("Exception: " +e);
}
}
}
-----------------------------
test output
----------------------------
Exception in thread "main" java.lang.NoSuchFieldError: sender_ia
at sun.nio.ch.DatagramChannelImpl.initIDs(Native Method)
at sun.nio.ch.DatagramChannelImpl.<clinit>(DatagramChannelImpl.java:456)
at sun.nio.ch.SelectorProviderImpl.openDatagramChannel(SelectorProviderImpl.java:25)
at openTest.go(openTest.java:20)
at openTest.main(openTest.java:13)
-------------------------------------
-------------------------
Verified in release b72
sreejith.ak@India 2001-07-24
- relates to
-
JDK-4463693 Performance of DatagramChannel.receive should be improvded
-
- Resolved
-