我试图关注this tutorial,但我的导入问题。
我得到了:
The import com.sun.tools cannot be resolved
在行
import com.sun.tools.attach.VirtualMachine;
我试图在Sun / Oracle网站上查找一些信息,但我没有找到任何有用的信息。
我正在开发JDK 1.6.0_31。
答案 0 :(得分:15)
tools.jar
添加到IDE的库路径和程序的类路径中。 tools.jar
文件位于JDK的lib
目录中。
例如,如果JDK已安装到C:\Program Files\Java\jdk1.7.0_11
,那么tools.jar
文件将在C:\Program Files\Java\jdk1.7.0_11\lib\tools.jar
找到。
答案 1 :(得分:4)
您应该将tools.jar
添加到classpath
。
答案 2 :(得分:4)
请参阅本教程以包含tools.jar
。
http://hobione.wordpress.com/2009/03/11/missing-comsuntoolsjar142/