With the 1.4.0 API you could specifiy a port to open a DatagramChannel on by calling the static method DatagramChannel.open(port)
http://www.infres.enst.fr/docs/jdk1.4.0/api/java/nio/channels/DatagramChannel.html#open(int)
Apparently, this method is no longer around in 1.4.1
http://java.sun.com/j2se/1.4.1/docs/api/java/nio/channels/DatagramChannel.html
What is the methodology for opening one, and how does something disappear from the API like that?