Missing Library com.sun.tools.attach

后端 未结 3 1806
[愿得一人]
[愿得一人] 2021-02-05 11:03

I\'ve tried to follow this tutorial, but I have problem with imports.

I got:

The import com.sun.tools cannot be resolved

in line

相关标签:
3条回答
  • 2021-02-05 11:53

    You should add tools.jar to your classpath.

    0 讨论(0)
  • 2021-02-05 11:56

    Refer this tutorial to include tools.jar .

    http://hobione.wordpress.com/2009/03/11/missing-comsuntoolsjar142/

    0 讨论(0)
  • 2021-02-05 12:01

    tools.jar needs to be added to the IDE's library path and the program's classpath. The tools.jar file is found in the JDK's lib directory.

    For example, if the JDK were installed into C:\Program Files\Java\jdk1.7.0_11 then the tools.jar file will be found at C:\Program Files\Java\jdk1.7.0_11\lib\tools.jar.

    0 讨论(0)
提交回复
热议问题