有关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图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

Golang操作DuckDB实战案例分享

《Golang操作DuckDB实战案例分享》DuckDB是一个嵌入式SQL数据库引擎,它与众所周知的SQLite非常相似,但它是为olap风格的工作负载设计的,DuckDB支持各种数据类型和SQL特性... 目录DuckDB的主要优点环境准备初始化表和数据查询单行或多行错误处理和事务完整代码最后总结Duck

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码

《在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码》在MyBatis的XML映射文件中,trim元素用于动态添加SQL语句的一部分,处理前缀、后缀及多余的逗号或连接符,示... 在MyBATis的XML映射文件中,<trim>元素用于动态地添加SQL语句的一部分,例如SET或W

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

关于Maven中pom.xml文件配置详解

《关于Maven中pom.xml文件配置详解》pom.xml是Maven项目的核心配置文件,它描述了项目的结构、依赖关系、构建配置等信息,通过合理配置pom.xml,可以提高项目的可维护性和构建效率... 目录1. POM文件的基本结构1.1 项目基本信息2. 项目属性2.1 引用属性3. 项目依赖4. 构

Python使用qrcode库实现生成二维码的操作指南

《Python使用qrcode库实现生成二维码的操作指南》二维码是一种广泛使用的二维条码,因其高效的数据存储能力和易于扫描的特点,广泛应用于支付、身份验证、营销推广等领域,Pythonqrcode库是... 目录一、安装 python qrcode 库二、基本使用方法1. 生成简单二维码2. 生成带 Log