文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java 操作XML转JSON数据格式

2023-10-27 17:38

关注

java操作XML文档转为JSON数据格式

一、使用的maven依赖

            org.dom4j            dom4j            2.1.3        

二、代码实现

import com.alibaba.fastjson2.JSONArray;import com.alibaba.fastjson2.JSONObject;import com.ruoyi.common.utils.StringUtils;import org.dom4j.*;import org.dom4j.Document;import org.dom4j.Element;import org.dom4j.io.SAXReader;import java.io.*;import java.util.*;public class XMLParse  {    //文件路径    static String path = "D:\\DevelopWorkspace\\MY\\opensource-framework\\RuoYi-Vue\\doc\\DataSourceConfig.xml";    public static void main(String[] args) throws Exception {        //1、读取文件并转换为Document文档对象        Document doc = new SAXReader().read(new File(path));        //2、使用asXML()方法将DOM文档对象转换为字符串        String s = doc.asXML();        //3、调用自定义的方法转换为JSON数据格式        JSONObject jsonObject = startXMLToJSON(s);        //4、输出结果        System.out.println(jsonObject);    }        public static JSONObject startXMLToJSON(String xml){        //1、定义JSON对象保存结果        JSONObject result = new JSONObject();        try {            //2、使用DocumentHelper.parseText()转换为DOM文档对象            Document document = DocumentHelper.parseText(xml);            //3、获取DOM文档根节点            Element rootElement = document.getRootElement();            //4、调用自定义的方法转换为JSON数据格式            parseJson(rootElement,result);        } catch (DocumentException e) {            e.printStackTrace();        }        return result;    }    public static void parseJson(Element element,JSONObject result){        //1、获取子节点列表        List elements = element.elements();        //2、循环子节点列表获取数据        for (Element e:elements) {            //3、有数据则获取            if (!e.elements().isEmpty() && !e.getText().isEmpty()){                //4、定义另一个JSON对象保存子节点JSON数据                JSONObject cjson = new JSONObject();                //5、此处调用自身继续方法继续循环取值,知道遍历完所有字节点数据                parseJson(e,cjson);                if (!cjson.isEmpty()){                    //6、添加到JSON对象                    result.put(e.getName(),cjson);                }            }else {                if (!e.getText().isEmpty()){                    //6、添加到JSON对象                    result.put(e.getName(),e.getText());                }            }        }    } }

Debug流程源码解析

1、SAXReader加载XML文件,创建DOM文档对象

        //1、读取文件并转换为Document文档对象        Document doc = new SAXReader().read(new File(path));

①、调用SAXReader.read(File file)方法

阐述:
【注释意思】:从给定的文件参数中读取文档:
1、file–是要读取的文件。
2、返回:新创建的Document实例
3、抛出:DocumentException–如果在解析过程中发生错误
【执行步骤】:
1、使用new InputSource(new FileInputStream(file))获取文件输入流对象source
2、校验字符编码,此处并没有设置
3、file.getAbsolutePath()获取文件file的绝对路径
4、文件路径path不为空则统一文件路径的分隔符/
5、最后将文件输入流对象source作为参数调用read(source)方法

Reads a Document from the given FileParams:file – is the File to read from.Returns:the newly created Document instanceThrows:DocumentException – if an error occurs during parsing.public Document read(File file) throws DocumentException {        try {                         //1、使用new InputSource(new FileInputStream(file))获取文件输入流对象source            InputSource source = new InputSource(new FileInputStream(file));                        //2、校验字符编码,此处并没有设置            if (this.encoding != null) {                source.setEncoding(this.encoding);            }            //3、file.getAbsolutePath()获取文件file的绝对路径            String path = file.getAbsolutePath();//4、文件路径path不为空则统一文件路径的分隔符/            if (path != null) {                // Code taken from Ant FileUtils                StringBuffer sb = new StringBuffer("file://");                // add an extra slash for filesystems with drive-specifiers                if (!path.startsWith(File.separator)) {                    sb.append("/");                }                path = path.replace('\\', '/');                sb.append(path);                source.setSystemId(sb.toString());            }            //5、最后将文件输入流对象source作为参数调用read(source)方法            return read(source);        } catch (FileNotFoundException e) {            throw new DocumentException(e.getMessage(), e);        }    }

②调用read(InputSource in)方法

阐述:
【注释意思】:使用SAXParams从给定的InputSource读取文档:
1、in–要读取的InputSource。
2、返回:新创建的Document实例
3、抛出:DocumentException–如果在解析过程中发生错误。

public Document read(InputSource in) throws DocumentException {        try {            XMLReader reader = getXMLReader();            reader = installXMLFilter(reader);            EntityResolver thatEntityResolver = this.entityResolver;            if (thatEntityResolver == null) {                thatEntityResolver = createDefaultEntityResolver(in                        .getSystemId());                this.entityResolver = thatEntityResolver;            }            reader.setEntityResolver(thatEntityResolver);            SAXContentHandler contentHandler = createContentHandler(reader);            contentHandler.setEntityResolver(thatEntityResolver);            contentHandler.setInputSource(in);            boolean internal = isIncludeInternalDTDDeclarations();            boolean external = isIncludeExternalDTDDeclarations();            contentHandler.setIncludeInternalDTDDeclarations(internal);            contentHandler.setIncludeExternalDTDDeclarations(external);            contentHandler.setMergeAdjacentText(isMergeAdjacentText());            contentHandler.setStripWhitespaceText(isStripWhitespaceText());            contentHandler.setIgnoreComments(isIgnoreComments());            reader.setContentHandler(contentHandler);            configureReader(reader, contentHandler);            reader.parse(in);            return contentHandler.getDocument();        } catch (Exception e) {            if (e instanceof SAXParseException) {                // e.printStackTrace();                SAXParseException parseException = (SAXParseException) e;                String systemId = parseException.getSystemId();                if (systemId == null) {                    systemId = "";                }                String message = "Error on line "                        + parseException.getLineNumber() + " of document "                        + systemId + " : " + parseException.getMessage();                throw new DocumentException(message, e);            } else {                throw new DocumentException(e.getMessage(), e);            }        }    }

2、Document使用asXML()方法将DOM文档对象转换为字符串,该方法继承接口Node

阐述:
【注释意思】:
asXML返回该节点的文本XML表示。
1、返回:此节点的XML表示形式
2、接口返回数据类型:String
3、接口实现类 AbstractDocument
【执行步骤】:
1、使用OutputFormat定义输出XML文件流格式
2、StringWriter作为字符串输出缓冲区
3、创建XMLWriter并输出对象
4、最后返回输出到StringWriter的字符串

String asXML();
public String asXML() {//1、使用OutputFormat定义输出XML文件流格式        OutputFormat format = new OutputFormat();                //2、定义编码格式,建议使用UTF-8        format.setEncoding(encoding);                try {        //3、创建StringWriter作为字符串输出缓冲区            StringWriter out = new StringWriter();                        //4、创建XMLWriter并输出对象            XMLWriter writer = new XMLWriter(out, format);            writer.write(this);            writer.flush();            //5、最后返回输出到StringWriter的字符串            return out.toString();        } catch (IOException e) {            throw new RuntimeException("IOException while generating textual "                    + "representation: " + e.getMessage());        }    }

2、DocumentHelper.parseText(String text)把字符串转换为DOM对象

阐述:
【注释意思】:
<code>parseText</code>将给定的文本解析为XML文档返回新创建的文档。param 1、text要解析的XML文本
2、返回一个新解析的文档
2、如果无法解析文档,则@throws DocumentException
【执行步骤】:
1、使用OutputFormat定义输出XML文件流格式
2、StringWriter作为字符串输出缓冲区
3、创建XMLWriter并输出对象
4、最后返回输出到StringWriter的字符串

        public static Document parseText(String text) throws DocumentException {        Document result = null;//1、创建SAXReader        SAXReader reader = new SAXReader();        //2、换取编码格式        String encoding = getEncoding(text);        //3、使用输入流读取需要解析的字符串文本        InputSource source = new InputSource(new StringReader(text));        //4、设置编码格式        source.setEncoding(encoding);//使用read(InputSource in)方法读取解析        result = reader.read(source);        // if the XML parser doesn't provide a way to retrieve the encoding,        // specify it manually        //如果XML解析器不提供检索编码的方法,手动指定        if (result.getXMLEncoding() == null) {            result.setXMLEncoding(encoding);        }        return result;    }

来源地址:https://blog.csdn.net/weixin_45467097/article/details/130515679

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯