使用 Eclipse 编译 Android 应用程序时遇到一个小问题。

它说 :

The import sun cannot be resolved

其实我想使用包中的 NotImplementedException
sun.reflect.generics.reflectiveObjects

你有什么想法吗?

我安装了 Java 1.7 和适用于 Java EE 开发人员的 Eclipse Indigo IDE。

最佳答案

sun.* 中的类是 not meant to be imported 。它们仅供 JVM 内部使用。

使用 UnsupportedOperationException 而不是 NotImplementedException

关于java - 导入sun无法解决,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12670003/

10-12 20:30