gpt4 book ai didi

java - 在 URL 处的 JSON 文件中查找某些字段

转载 作者:行者123 更新时间:2023-12-01 14:45:14 24 4
gpt4 key购买 nike

我无法理解 JSON 和 Java 对象协同工作的要点。基本上我需要做的是检查 URL 上的 JSON 文件,看看是否有可用的软件更新版本。我已经打开了连接,并且可以将 JSON 打印到控制台,但这就是我所拥有的一切。我主要尝试使用 GSON。下面是我到目前为止的主要代码, list 是下面显示的类的对象。我最关心的是 JSON 中的“版本”字段,因为我需要将其与我当前的程序版本号进行比较。

BufferedReader reader = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
stringV = reader.readLine();
//System.out.println(manifest);
while ((line = reader.readLine()) != null) {
stringV = stringV + gson.toJson(line);
//manifest = manifest + line;
}
System.out.println(manifest);

manifest man = gson.fromJson(manifest, manifest.class);
testString = man.getversion();
System.out.println(test);

我的一个问题涉及我专用于 JSON 的类,我是否需要为 JSON 中的所有字段进行声明、获取/设置?

public class manifest{
private List<String> versions;
private String version;
private String current;
private String compatible;
private String published;
private String description;
private List<String> manifest;
private String jre;

public List<String> getVersions(){return versions;}
public String getversion(){return version;}
public String getcurrent(){return current;}
public String getcomp(){return compatible;}
public String getpub(){return published;}
public String getdesc(){return description;}
public List<String> getFileList(){return manifest;}
public String getjre(){return jre;}

public void setVersions(List<String> versions){this.versions = versions;}
public void setversion(String version){this.version = version;}
public void setcurrent(String current){this.current = current;}
public void setcomp(String compatible){this.compatible = compatible;}
public void setpub(String published){this.published = published;}
public void setdesc(String description){this.description = description;}
public void setFileList(List<String> manifest){this.manifest = manifest;}
public void setjre(String jre){this.jre = jre;}

@Override
public String toString(){
return String.format("Versions:%s,version:%s,curr:%s,comp:%s,pub:%s,desc:%s,manifest:%s,jre:%s",
versions, version, current, compatible, published, description, manifest, jre);
}
}

这是 JSON 的结构:

      {
"versions": [
{
"version": "II V7.1.2",
"current": true,
"compatible": true,
"published": "2012-04-21T18:25:43-05:00",
"description": "Stability improvements for users:\n\n-Fix a crash\n-Fix a bug",
"manifest": [
{
"name": "file.jar",
"checksum": "56116165156111156156116161651161616116165116116516651651"
}, (more elements here)
"jre": "1.7.0_17"

非常感谢任何帮助,因为我根本不熟悉 JSON。谢谢!

最佳答案

JSON 实际上在对象世界中很容易概念化。您可以将其视为数据映射,其中键是字符串,值可以是任何基本类型( boolean 值、数字、字符串、日期)、数组或其他映射。每当该值最终成为另一个映射时,您就创建一个对象!就这么简单。

因此,就您的情况而言,让我们看看您包含的 JSON 片段:

{
"versions": [
{
"version": "II V7.1.2",
"current": true,
"compatible": true,
"published": "2012-04-21T18:25:43-05:00",
"description": "Stability improvements for users:\n\n-Fix a crash\n-Fix a bug",
"manifest": [
{
"name": "file.jar",
"checksum": "56116165156111156156116161651161616116165116116516651651"
}
],
"jre": "1.7.0_17"
}
]
}

此代码段中的外部 JSON 对象包含一个 JSON 元素,它是一个数组,名称为 versions。该数组中的每个元素自然映射到一个对象,为您提供如下所示的顶级定义:

public class Root {
private List<Version> versions;

// Constructors, getters, setters
}

现在,您可以开始查看 Version 对象的详细信息。使用这些规则来创建您的 Java 对象:

  • 将每个基本类型值映射到等效的 Java 属性。
  • 将对象类型值映射到类。
  • 将数组映射到 Java 集合类型

日期不是原始的,但为了映射的目的,我们将应用相同的规则

public class Version {
private String version;
private Boolean current;
private Boolean compatible;
private Date published;
private String description;
private List<Manifest> manifest; // Note the collection *and* object mapping
private String jre;
// Constructors, getters, setters
}

public class Manifest {
private String name;
private String checksum;
}

很简单吧?然后,您可以使用以下代码将顶级 JSON 映射到顶级对象:

Root obj = new Gson().fromJson(jsonStr, Root.class);
<小时/>

总的来说,您用来检索 JSON 的代码有一些不必要/不正确的代码:

  • 使用 StringBuilder 构建字符串,而不是更昂贵的连接操作
  • 在 while 循环中,对 gson.toJson(line); 的调用是不必要的,而且实际上是不正确的。

关于java - 在 URL 处的 JSON 文件中查找某些字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15490458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com