The compiler display warnings if you use Sun's proprietary Java classes. I'm of the opinion that it's generally a bad idea to use these classes. I read this somewhere. However, aside from the warnings are there any fundamental reasons why you should not use them?
feedback
|
|
Because they are internal APIs: they are subject to change in a undocumented or unsupported way and they are bound to a specific JRE/JDK (Sun in your case), limiting portability of your programs. Try to avoid uses of such APIs, always prefer a public documented and specified class. | |||||
feedback
|
|
Yes, because nobody guarantees that these classes or API will be the same with the next Java release and I bet it's not guaranteed that those classes are available in Java versions from other vendors. So you couple your code to special Java version and loose at least portability. | |||
|
feedback
|
|
The JDK 6 Documentation includes a link titled Note About The most important points from it are:
and
| ||||
|
feedback
|
|
Sun's proprietary Java classes are part of their Java implementation not part of the Java API their use is undocumented and unsupported. Since they are internal they can be changed at any time for any reason that the team working the Sun JVM decides. Also Sun's Java implementation is not the only one out there! Your code would not be able portable to JVMs from other vendors like Oracle/BEA and IBM. | ||||
|
feedback
|
|
Try running your code with a non-Sun JVM and see what happens... (Your code will fail with a ClassNotFound exception) | |||||||
feedback
|
|
I recently had a case that showed a real-world problem you can hit when you use these classes: we had code that would not compile because a method it was using on a sun.* class simply did not exist in OpenJDK on Ubuntu. So I guess when using these classes you can no longer say things like 'this works with Java 5', because it will only work on a certain Java implementation. | ||||
|
feedback
|