如何在Java中安装GSON模块

发布于 2024-08-31 06:07:01 字数 310 浏览 4 评论 0原文

我下载了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行至春深 2024-09-07 06:07:01
  1. 您不应该提取 JAR。
  2. 您不应将第 3 方库放入 JDK/lib 中。

您需要使用 -cp-classpath 参数在类路径中指定它。例如,

java -cp .;/path/to/gson.jar com.example.MyClass

为了节省每次键入的时间,请使用 .bat 文件来执行它。

如果您实际上使用的是 Eclipse 等 IDE,那么您也可以右键单击 Java 项目,选择构建路径,然后将其添加为新的。然后 Eclipse 会自动将其放入编译时和运行时类路径中。

  1. You should not extract the JAR.
  2. You should not put 3rd party libraries in JDK/lib.

You need to specify it in the classpath using -cp or -classpath argument. E.g.

java -cp .;/path/to/gson.jar com.example.MyClass

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文