com.sun.*, sun.* 開頭的包都是 JRE 的底層類庫,未被歸檔化,這是因爲這些類都是依賴於平臺的,在 Windows 平臺上有這個類,在 Linux 上可能就沒有這個類。
咱們應該儘可能少用 JRE 的底層類庫:http://www.oracle.com/technetwork/java/faq-sun-packages-142232.html html
The java.*, javax.* and org.* packages documented in the Java Platform Standard Edition API Specification make up the official, supported, public interface.
java
The sun.* packages are not part of the supported, public interface. oracle
In general, writing java programs that rely on sun.* is risky: those classes are not portable, and are not supported.spa