Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我下载了谷歌 JSON 模块又名 GSON。我是windows系统你能告诉我如何安装GSON模块吗?我将 JAR 提取到我的类路径中的以下文件夹中:
C:\Program Files\Java\jdk1.6.0_07\lib
..但是当我输入:
import com.google.gson.Gson; import com.google.gson.GsonBuilder;
我仍然收到未找到模块的错误。
我究竟做错了什么?
谢谢。
JDK/lib
您需要使用-cpor-classpath参数在类路径中指定它。例如
-cp
-classpath
java -cp .;/path/to/gson.jar com.example.MyClass
为了节省每次输入的时间,请使用.bat文件来执行它。
.bat
如果您实际上使用的是 Eclipse 之类的 IDE,那么您也可以右键单击 Java 项目,选择Build Path然后将其添加为新Library。然后 Eclipse 会自动在编译时和运行时类路径中使用它。