项目作者: SimY4

项目描述 :
XML builder library based on XPath processing
高级语言: Java
项目地址: git://github.com/SimY4/xpath-to-xml.git
创建时间: 2017-06-03T11:11:40Z
项目社区:https://github.com/SimY4/xpath-to-xml

开源协议:Apache License 2.0

下载


XPath-to-XML

Build Status
codecov
License

Maven Central
Javadocs

Convenient utility to build XML models by evaluating XPath expressions.

Supported XML models

  • DOM
  • DOM4J
  • JDOM
  • Scala XML
  • XOM

Additionally supported models

  • jakarta.json
  • Gson
  • Jackson

Usage

Include an artifact with necessary model extension into your project:

  1. <dependency>
  2. <groupId>com.github.simy4.xpath</groupId>
  3. <artifactId>xpath-to-xml-dom</artifactId>
  4. <version>2.2.0</version>
  5. </dependency>

Now having a XML structure i.e.:

  1. <breakfast_menu>
  2. <food>
  3. <name>Belgian Waffles</name>
  4. <price>$5.95</price>
  5. <description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
  6. <calories>650</calories>
  7. </food>
  8. </breakfast_menu>

and one of supported models:

  1. import java.io.StringReader;
  2. import javax.xml.parsers.*;
  3. import org.xml.sax.InputSource;
  4. class Example0 {
  5. private static final String xmlSource = "my-xml-source";
  6. public static Document document(String xml) throws Exception {
  7. var documentBuilderFactory = DocumentBuilderFactory.newInstance();
  8. var documentBuilder = documentBuilderFactory.newDocumentBuilder();
  9. var inputSource = new InputSource(new StringReader(xml));
  10. return documentBuilder.parse(inputSource);
  11. }
  12. }

you can:

  • alter existing paths
  1. import com.github.simy4.xpath.XmlBuilder;
  2. class Example1 extends Example0 {
  3. public static void main(String... args) throws Exception {
  4. new XmlBuilder()
  5. .put("/breakfast_menu/food[1]/price", "$7.95")
  6. .build(document(xmlSource));
  7. }
  8. }
  • append new elements
  1. import com.github.simy4.xpath.XmlBuilder;
  2. class Example2 extends Example0 {
  3. public static void main(String... args) throws Exception {
  4. new XmlBuilder()
  5. .put("/breakfast_menu/food[name='Homestyle Breakfast'][price='$6.95'][description='Two eggs, bacon or sausage, toast, and our ever-popular hash browns']/calories", "950")
  6. .build(document(xmlSource));
  7. }
  8. }
  • remove paths
  1. import com.github.simy4.xpath.XmlBuilder;
  2. class Example3 extends Example0 {
  3. public static void main(String... args) throws Exception {
  4. new XmlBuilder()
  5. .remove("/breakfast_menu/food[name='Belgian Waffles']")
  6. .build(document(xmlSource));
  7. }
  8. }
  • combine any of the above actions into a single modification action
  1. import com.github.simy4.xpath.XmlBuilder;
  2. class Example4 extends Example0 {
  3. public static void main(String... args) throws Exception {
  4. new XmlBuilder()
  5. .remove("/breakfast_menu/food[name='Homestyle Breakfast']")
  6. .put("/breakfast_menu/food[name='Homestyle Breakfast'][price='$6.95'][description='Two eggs, bacon or sausage, toast, and our ever-popular hash browns']/calories", "950")
  7. .build(document(xmlSource));
  8. }
  9. }