gpt4 book ai didi

java - 使用eclipse将.xml文件转换为java中的.json文件?

转载 作者:太空宇宙 更新时间:2023-11-04 10:20:13 26 4
gpt4 key购买 nike

这是我到目前为止的方法。

package com.xmltojson.parse_xml_to_json;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import net.sf.json.JSON;
import net.sf.json.JSONObject;
import net.sf.json.xml.XMLSerializer;
import org.apache.commons.io.IOUtils;

public class XMLtoJsonConverter
{
private URL url = null;
private InputStream inputStream = null;

public void getXMLfromJson() {
try {
url = XMLtoJsonConverter.class.getClassLoader().getResource("sampleParse.xml");
inputStream = url.openStream();
String xml = IOUtils.toString(inputStream);
JSON objJson = new XMLSerializer().read(xml);


System.out.println("JSON data : " + objJson);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (inputStream != null) {
inputStream.close();
}
url = null;
} catch (IOException ex) {
}
}
}

public static void main(String[] args) {
new XMLtoJsonConverter().getXMLfromJson();
}
}

下面是我的示例 xml 文件

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<terms>

<term id="108822" SC="CO" LC="EN" LQ="UK" Type="DES">
<label>soyabeans</label>
<hn>From 1983.</hn>
<uf idref="108843"/>
<bt idref="52990"/>
<cpl idref="52335"/>
<cpl idref="52340"/>
</term>

<term id="108843" SC="CO" LC="EN" LQ="US" Type="NPT">
<label>soybeans</label>
<use idref="108822"/>
</term>

<term id="52990" SC="CO" LC="EN" LQ="NA" Type="DES">
<label>grain legumes</label>
<uf idref="98121"/>
<bt idref="52982"/>
</term>

<term id="52335" SC="ON" LC="EN" LQ="NA" Type="DES">
<label>Glycine max</label>
<com>bhatta (Hindi) (India);
bhatta (Nepali) (India);
bhatta (Nepali) (Nepal);
bhattamash (Nepali) (India);
bhattamash (Nepali) (Nepal);</com>
<uf idref="108125"/>
<uf idref="52333"/>
</term>

<term id="52340" SC="ON" LC="EN" LQ="NA" Type="DES">
<label>Glycine soja</label>
<uf idref="52341"/>
<uf idref="52344"/>
<bt idref="52327"/>
<hpr idref="108822"/>
</term>

</terms>

我想将此 xml 转换为下面显示的 jsonFormat

[
{
"term": "soyabeans",
"termHelp": "uf: soybeans, bt: grain legumes",
}
]

其中 term 是标签名称,所有其他标签都将出现在 termHElp 中。某些 term help 元素包含对其他 XML 标记引用的引用,从这些标记引用中选取标签值并将其放入 termhelp 项的引用中

最佳答案

我发现您的 JSON 表示并不是对输入 XML 的直接转换,因此您无法使用任何可用的标准开源库(如 Jackson、Gson、Json 等)实现您所要求的目标。您必须分 3 个步骤来完成此操作:


1) Deserialize XML to POJO(say class XMLPOJO) using JAXB

2) Transform XMLPOJO to JSONPOJO (class representing desired JSON format) using standard Java code

3) Serialize POJO (class JSONPOJO) to Json using any JSON parser libraries like Jackson etc.

关于java - 使用eclipse将.xml文件转换为java中的.json文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51257486/

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