Why Developers Should Not Write Programs That Call 'sun' Packages_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Why Developers Should Not Write Programs That Call 'sun' Packages

Why Developers Should Not Write Programs That Call 'sun' Packages

 2020/4/14 16:06:09  guanghuiqq  程序员俱乐部  我要评论(0)
  • 摘要:WhyDevelopersShouldNotWriteProgramsThatCall'sun'PackagesThejava.*,javax.*andorg.*packagesdocumentedintheJavaPlatformStandardEditionAPISpecificationmakeuptheofficial,supported,publicinterface.IfaJavaprogramdirectlycallsonlyAPIinthesepackages
  • 标签:
Why Developers Should Not Write Programs That Call 'sun' Packages

The java.*, javax.* and org.* packages documented in the Java Platform Standard Edition API Specification make up the official, supported, public interface.

If a Java program directly calls only API in these packages, it will operate on all Java-compatible platforms, regardless of the underlying OS platform.

The sun.* packages are not part of the supported, public interface.

A Java program that directly calls into sun.* packages is not guaranteed to work on all Java-compatible platforms. In fact, such a program is not guaranteed to work even in future versions on the same platform.

Each company that implements the Java platform will do so in their own private way. The classes in sun.* are present in the JDK to support Oracle's implementation of the Java platform: the sun.* classes are what make the Java platform classes work "under the covers" for Oracle's JDK. These classes will not in general be present on another vendor's Java platform. If your Java program asks for a class "sun.package.Foo" by name, it may fail with ClassNotFoundError, and you will have lost a major advantage of developing in Java.

Technically, nothing prevents your program from calling into sun.* by name. From one release to another, these classes may be removed, or they may be moved from one package to another, and it's fairly likely that their interface (method names and signatures) will change. (From Oracle's point of view, since we are committed to maintaining the Java platform, we need to be able to change sun.* to refine and enhance the platform.) In this case, even if you are willing to run only on Oracle's implementation, you run the risk of a new version of the implementation breaking your program.

In general, writing java programs that rely on sun.* is risky: those classes are not portable, and are not supported.
上一篇: Java加密和数字签名 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名