如何在Java中安装GSON模块
我下载了 Google JSON 模块,又名 GSON。我是Windows系统,你能告诉我如何安装GSON模块吗?我将 JAR 提取到类路径中的以下文件夹中:
C:\Program Files\Java\jdk1.6.0_07\lib
..但是当我输入:
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
我仍然收到模块未找到错误。
我做错了什么?
谢谢。
I downloaded the Google JSON module a.k.a GSON. I'm ona windows system Could you tell me how to install the GSON module? I extracted the JAR into the following folder which was in my classpath:
C:\Program Files\Java\jdk1.6.0_07\lib
..but when i type:
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
I still get a module not found error.
What am I doing wrong?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JDK/lib
中。您需要使用
-cp
或-classpath
参数在类路径中指定它。例如,为了节省每次键入的时间,请使用
.bat
文件来执行它。如果您实际上使用的是 Eclipse 等 IDE,那么您也可以右键单击 Java 项目,选择构建路径,然后将其添加为新的库。然后 Eclipse 会自动将其放入编译时和运行时类路径中。
JDK/lib
.You need to specify it in the classpath using
-cp
or-classpath
argument. E.g.To save the time in typing it everytime, use a
.bat
file to execute it.If you're actually using an IDE like Eclipse, then you can also just rightclick the Java project, choose Build Path and then add it as new Library. Eclipse will then automatically take it in both the compiletime and runtime classpath.