添加 JSON 包参考; Java新手

发布于 2024-11-02 09:48:30 字数 485 浏览 0 评论 0 原文

我对 Java 是个新手,而且一直是个很喜欢的人。话虽这么说,我正在尝试使用 JSON 库(包?类?Java 术语真是令人困惑!),并且在将它们添加为参考时遇到问题。

这三个导入无法解析:

import org.json.simple.JSONArray;

import org.json.simple.JSONObject;

import org.json.simple.JSONValue;

我去了 json.org 并 下载 Java 库,但我不知道如何处理它们。我尝试进入项目属性并添加外部类但无济于事。我注意到下载的文件夹充满了 .java 文件。我该怎么处理这些?

很抱歉在这里提出这样一个菜鸟问题,但我很困惑。

I'm brand new to Java and have always been a c kind-of-guy. That being said, I'm trying to use the JSON libraries (packages? classes? Java terminology is so damn confusing!) and am having issues adding them as a reference.

These three imports cannot be resolved:

import org.json.simple.JSONArray;

import org.json.simple.JSONObject;

import org.json.simple.JSONValue;

I went to json.org and downloaded the Java libraries but I'm not sure what to do with them. I've tried to go into project properties and add an external class to no avail. I noticed the downloaded folder is full of .java files. What am I supposed to do with these?

Sorry to present such a noob question on here, but I'm stumped.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

爱的那么颓废 2024-11-09 09:48:30
  • 右键单击 Eclipse 项目,
  • 选择“属性”,
  • 选择“Java 构建路径”
  • ,单击“库”选项卡
  • ,单击“添加外部 jar
  • ”,找到 json jar 并添加它们。
  • Right click on the Eclipse project,
  • choose Properties
  • Select Java Build Path
  • Click the libraries tab
  • click add external jars
  • find the json jar(s) and add them.
与风相奔跑 2024-11-09 09:48:30

我相信这是一个错误的下载。您需要这里的 JSON-Simple 库 http://code.google.com/p/json-简单/。您的链接指向另一个实现。

下载后,*.jar 应添加到类路径中。如何做到这一点取决于您使用的工具。在 Eclipse 中,右键单击项目,Properties->Libraries 并添加新的 JAR。

This is a wrong download I believe. You need JSON-Simple library from here http://code.google.com/p/json-simple/ . Your link points to another implementation.

After download the *.jar should be added to the classpath. How you do it depends on the tools you use. In Eclipse it is right-click on the project, Properties->Libraries and add the new JAR.

不必在意 2024-11-09 09:48:30

嘿,只需从这个网站下载 json.jar

http://www.java2s.com /Code/Jar/j/Downloadjsonsimple11jar.htm

之后

  • 右键单击您的 Eclipse 项目,然后
  • 选择该文件夹的属性
  • 选择 Java 构建路径 单击库选项卡
  • 单击添加外部 jar

找到 json jar 并添加它们。

import java.io.FileReader;
import java.util.Iterator;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;

并将这些包添加到您的 java 文件中:)

Hey just download the json.jar from this website

http://www.java2s.com/Code/Jar/j/Downloadjsonsimple11jar.htm

after that

  • right click on your eclipse project then
  • choose Properties of that folder
  • Select Java Build Path Click the libraries tab
  • click add external jars

find the json jar(s) and add them.

import java.io.FileReader;
import java.util.Iterator;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;

and add these package in your java file :)

世界如花海般美丽 2024-11-09 09:48:30

请注意:Json 和 JsonSimple 不同。如果您使用 Maven,您可以通过将此依赖项添加到 pom 文件来获取 json-simple:

http://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1.1

<dependency>
    <groupId>com.googlecode.json-simple</groupId>
    <artifactId>json-simple</artifactId>
    <version>1.1.1</version>
</dependency>

Be advised: Json and JsonSimple are not the same. If you are using Maven you can get json-simple by adding this dependency to your pom file:

http://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1.1

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