有关W3C Document操作的XML工具类

2023-11-02 01:38
文章标签 工具 xml 操作 document w3c

本文主要是介绍有关W3C Document操作的XML工具类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

       纯干货,你懂的,各位看官直接看代码:

package com.yida.spider4j.crawler.utils.xml;import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathExpressionException;
import javax.xml.xpath.XPathFactory;import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;import com.yida.spider4j.crawler.utils.common.GerneralUtils;/*** XML常用操作工具类* * @since 1.0* @author Lanxiaowei@citic-finance.com* @date 2015-6-16下午3:39:10* */
public class XMLUtils {private DocumentBuilder builder;private XPath xpath;private XMLUtils () {init();}private static class SingletonHolder {  private static final XMLUtils INSTANCE = new XMLUtils();  }  public static final XMLUtils getInstance() {  return SingletonHolder.INSTANCE; }  private void init() {if(builder == null) {DocumentBuilderFactory domfactory = DocumentBuilderFactory.newInstance();domfactory.setValidating(false);domfactory.setIgnoringComments(true);try {builder = domfactory.newDocumentBuilder();} catch (ParserConfigurationException e) {throw new RuntimeException("Create DocumentBuilder instance occur one exception.");}}if(xpath == null) {XPathFactory xpfactory = XPathFactory.newInstance();xpath = xpfactory.newXPath();}}/*** @Author: Lanxiaowei(736031305@qq.com)* @Title: document2String* @Description: W3C Document对象转成XML String* @param @param doc* @param @return* @return String* @throws*/public String document2String(Document doc) {DOMSource domSource = new DOMSource(doc);StringWriter writer = new StringWriter();StreamResult result = new StreamResult(writer);TransformerFactory tf = TransformerFactory.newInstance();Transformer transformer;try {transformer = tf.newTransformer();transformer.transform(domSource, result);} catch (TransformerException e) {throw new RuntimeException("Transformer org.w3c.dom.document object occur one exception.");}return writer.toString();}/*** @Author Lanxiaowei* @Title: parseDocument* @Description: 根据XML路径解析XML文档* @param path* @return* @return Document* @throws*/public Document parseDocument(String path) {try {return builder.parse(path);} catch (SAXException e) {throw new RuntimeException("The xml path is invalid or parsing xml occur exception.");} catch (IOException e) {throw new RuntimeException("The xml path is invalid or parsing xml occur exception.");}}/*** @Author Lanxiaowei* @Title: parseDocument* @Description: 根据文件解析XML文档* @param file* @return* @return Document* @throws*/public Document parseDocument(File file) {try {return builder.parse(file);} catch (SAXException e) {throw new RuntimeException("The input xml file is null or parsing xml occur exception.");} catch (IOException e) {throw new RuntimeException("The input xml file is null or parsing xml occur exception.");}}/*** @Author Lanxiaowei* @Title: parseDocument* @Description: 根据输入流解析XML文档* @param is* @return* @throws IOException* @throws SAXException* @return Document* @throws*/public Document parseDocument(InputStream is) {try {return builder.parse(is);} catch (SAXException e) {throw new RuntimeException("The input xml fileInputStream is null or parsing xml occur exception.");} catch (IOException e) {throw new RuntimeException("The input xml fileInputStream is null or parsing xml occur exception.");}}/*** @Author: Lanxiaowei(736031305@qq.com)* @Title: fragment2Document* @Description: 将html代码片段转换成document对象* @param @param fragment* @param @return* @return Document* @throws*/public Document fragment2Document(String fragment) {try {return builder.parse(new InputSource(new StringReader(fragment)));} catch (SAXException e) {throw new RuntimeException("parse fragment to document occur SAXException,please check your fragment.");} catch (IOException e) {throw new RuntimeException("parse fragment to document occur one IOException.");}}/*** @Author Lanxiaowei* @Title: selectNodes* @Description: 通过xpath获取节点列表* @param node* @param expression* @return* @throws XPathExpressionException* @return NodeList* @throws*/public NodeList selectNodes(Node node, String expression) {XPathExpression xpexpreesion = null;try {xpexpreesion = this.xpath.compile(expression);return (NodeList) xpexpreesion.evaluate(node,XPathConstants.NODESET);} catch (XPathExpressionException e) {throw new RuntimeException("Compile xpath expression occur excetion,please check out your xpath expression.");}}/*** @Author Lanxiaowei* @Title: selectSingleNode* @Description: 通过xpath获取单个节点* @param node* @param expression* @return* @return Node* @throws*/public Node selectSingleNode(Node node, String expression) {XPathExpression xpexpreesion = null;try {xpexpreesion = this.xpath.compile(expression);return (Node) xpexpreesion.evaluate(node, XPathConstants.NODE);} catch (XPathExpressionException e) {throw new RuntimeException("Compile xpath expression occur excetion,please check out your xpath expression.");}}/*** @Author Lanxiaowei* @Title: getNodeText* @Description: 根据xpath获取节点的文本值(只返回匹配的第一个节点的文本值)* @param node* @param expression* @return* @return String* @throws*/public String getNodeText(Node node, String expression) {XPathExpression xpexpreesion = null;try {xpexpreesion = this.xpath.compile(expression);return (String) xpexpreesion.evaluate(node, XPathConstants.STRING);} catch (XPathExpressionException e) {throw new RuntimeException("Compile xpath expression occur excetion,please check out your xpath expression.");}}/*** @Author: Lanxiaowei(736031305@qq.com)* @Title: getMultiNodeText* @Description: 根据xpath获取节点的文本值(若xpath表达式匹配到多个节点,则会提取所有匹配到节点的文本值)* @param @param node* @param @param expression* @param @return* @return List<String>* @throws*/public List<String> getMultiNodeText(Node node, String expression) {NodeList nodeList = selectNodes(node, expression);if(null == nodeList || nodeList.getLength() == 0) {return null;}List<String> list = new ArrayList<String>();for(int i=0; i < nodeList.getLength(); i++) {Node n = nodeList.item(i);String text = n.getTextContent();list.add(text);}return list;}/*** @Author: Lanxiaowei(736031305@qq.com)* @Title: getNodeAttributeValue* @Description: 根据xpath获取节点的属性值(若xpath表达式匹配到多个节点,则只会提取匹配到的第一个节点的属性值)* @param @param node* @param @param expression* @param @param atrributeName* @param @return* @return String* @throws*/public String getNodeAttributeValue(Node node,String expression, String atrributeName) {Node matchNode = selectSingleNode(node, expression);if (null == matchNode) {return null;}Node attNode = matchNode.getAttributes().getNamedItem(atrributeName);if (null == attNode) {return null;}return attNode.getNodeValue();}/*** @Author: Lanxiaowei(736031305@qq.com)* @Title: getMultiNodeAttributeValue* @Description: 根据xpath获取节点的属性值(若xpath表达式匹配到多个节点,则会提取所有匹配到节点的属性值)* @param @param node* @param @param expression      Xpath表达式,如div\span[@class]* @param @param atrributeName   属性名称* @param @return* @return List<String>* @throws*/public List<String> getMultiNodeAttributeValue(Node node, String expression,String atrributeName) {NodeList nodeList = selectNodes(node, expression);if(null == nodeList || nodeList.getLength() == 0) {return null;}List<String> list = new ArrayList<String>();for(int i=0; i < nodeList.getLength(); i++) {Node currentItem = nodeList.item(i);Node attNode = currentItem.getAttributes().getNamedItem(atrributeName);if(null == attNode) {continue;}String val = currentItem.getAttributes().getNamedItem(atrributeName).getNodeValue();list.add(val);}return list;}public static void main(String[] args) throws ParserConfigurationException,SAXException, IOException {/*String fragment = "<data><employee><name>益达</name>"+ "<title>Manager</title></employee></data>";XMLUtils util = new XMLUtils();Document doc = util.fragment2Document(fragment);NodeList nodes = doc.getElementsByTagName("employee");for (int i = 0; i < nodes.getLength(); i++) {Element element = (Element) nodes.item(i);NodeList name = element.getElementsByTagName("name");Element line = (Element) name.item(0);System.out.println("Name: " + line.getNodeName() + ":"+ line.getTextContent());NodeList title = element.getElementsByTagName("title");line = (Element) title.item(0);System.out.println("Name: " + line.getNodeName() + ":"+ line.getTextContent());}*/String fragment = "<data><employee><name id=\"1\">益达</name><name id=\"2\">yida</name>"+ "<title>Manager</title></employee></data>";XMLUtils util = new XMLUtils();Document doc = util.fragment2Document(fragment);List<String> strList = util.getMultiNodeText(doc, "//employee/name[@id]");String s = GerneralUtils.joinCollection(strList);System.out.println(s);strList = util.getMultiNodeAttributeValue(doc, "//employee/name[@id]", "id");s = GerneralUtils.joinCollection(strList);System.out.println(s);}
}

 

    注意这里说的Document指的都是org.w3c.dom.Document,而不是JDOM or DOM4J or Jsoup里的Document.org.w3c.dom.Document是JDK原生对象.

 

这篇关于有关W3C Document操作的XML工具类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/327211

相关文章

Java中有什么工具可以进行代码反编译详解

《Java中有什么工具可以进行代码反编译详解》:本文主要介绍Java中有什么工具可以进行代码反编译的相关资,料,包括JD-GUI、CFR、Procyon、Fernflower、Javap、Byte... 目录1.JD-GUI2.CFR3.Procyon Decompiler4.Fernflower5.Jav

使用Python创建一个能够筛选文件的PDF合并工具

《使用Python创建一个能够筛选文件的PDF合并工具》这篇文章主要为大家详细介绍了如何使用Python创建一个能够筛选文件的PDF合并工具,文中的示例代码讲解详细,感兴趣的小伙伴可以了解下... 目录背景主要功能全部代码代码解析1. 初始化 wx.Frame 窗口2. 创建工具栏3. 创建布局和界面控件4

Docker部署Jenkins持续集成(CI)工具的实现

《Docker部署Jenkins持续集成(CI)工具的实现》Jenkins是一个流行的开源自动化工具,广泛应用于持续集成(CI)和持续交付(CD)的环境中,本文介绍了使用Docker部署Jenkins... 目录前言一、准备工作二、设置变量和目录结构三、配置 docker 权限和网络四、启动 Jenkins

MobaXterm远程登录工具功能与应用小结

《MobaXterm远程登录工具功能与应用小结》MobaXterm是一款功能强大的远程终端软件,主要支持SSH登录,拥有多种远程协议,实现跨平台访问,它包括多会话管理、本地命令行执行、图形化界面集成和... 目录1. 远程终端软件概述1.1 远程终端软件的定义与用途1.2 远程终端软件的关键特性2. 支持的

Python调用Orator ORM进行数据库操作

《Python调用OratorORM进行数据库操作》OratorORM是一个功能丰富且灵活的PythonORM库,旨在简化数据库操作,它支持多种数据库并提供了简洁且直观的API,下面我们就... 目录Orator ORM 主要特点安装使用示例总结Orator ORM 是一个功能丰富且灵活的 python O

C#中读取XML文件的四种常用方法

《C#中读取XML文件的四种常用方法》Xml是Internet环境中跨平台的,依赖于内容的技术,是当前处理结构化文档信息的有力工具,下面我们就来看看C#中读取XML文件的方法都有哪些吧... 目录XML简介格式C#读取XML文件方法使用XmlDocument使用XmlTextReader/XmlTextWr

python使用fastapi实现多语言国际化的操作指南

《python使用fastapi实现多语言国际化的操作指南》本文介绍了使用Python和FastAPI实现多语言国际化的操作指南,包括多语言架构技术栈、翻译管理、前端本地化、语言切换机制以及常见陷阱和... 目录多语言国际化实现指南项目多语言架构技术栈目录结构翻译工作流1. 翻译数据存储2. 翻译生成脚本

0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型的操作流程

《0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeekR1模型的操作流程》DeepSeekR1模型凭借其强大的自然语言处理能力,在未来具有广阔的应用前景,有望在多个领域发... 目录0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型,3步搞定一个应

Java数字转换工具类NumberUtil的使用

《Java数字转换工具类NumberUtil的使用》NumberUtil是一个功能强大的Java工具类,用于处理数字的各种操作,包括数值运算、格式化、随机数生成和数值判断,下面就来介绍一下Number... 目录一、NumberUtil类概述二、主要功能介绍1. 数值运算2. 格式化3. 数值判断4. 随机

使用Navicat工具比对两个数据库所有表结构的差异案例详解

《使用Navicat工具比对两个数据库所有表结构的差异案例详解》:本文主要介绍如何使用Navicat工具对比两个数据库test_old和test_new,并生成相应的DDLSQL语句,以便将te... 目录概要案例一、如图两个数据库test_old和test_new进行比较:二、开始比较总结概要公司存在多