Wrap the Result of an XQuery Query into an XML Document

Wrap the Result of an XQuery Query into an XML Document

Wrapping the result of an XQuery query into an XML document is very useful if you’re working with atomic values. The following Java program uses the net.sf.saxon.om.SequenceIterator and net.sf.saxon.query.QueryResult classes to do this:

/*The resulted document : C:Data_Localxmldocswrap.xml*///Javaimport java.io.File;import java.io.OutputStream;import java.io.FileOutputStream;import java.util.Properties;import javax.xml.transform.OutputKeys;import javax.xml.transform.stream.StreamResult;//Saxonimport net.sf.saxon.om.SequenceIterator;import net.sf.saxon.query.QueryResult;import net.sf.saxon.om.DocumentInfo;import net.sf.saxon.Configuration;import net.sf.saxon.query.DynamicQueryContext;import net.sf.saxon.query.StaticQueryContext;import net.sf.saxon.query.XQueryExpression;public class XQueryWrapExample {   public static void main(String[] args) {            XQueryExpression exp=null; //used for compilation                   //the XQuery query      String query="for $i in (1, 2,3)"+"return ($i)";                      //wrap.xml      String xmlFileName="C://Data_Local//xml//docs//wrap.xml";      File outFile=null;            OutputStream destStream=null;                                       //create an instance of Configuration      Configuration C=new Configuration();              //create the static and dynamic contexts      StaticQueryContext SQC=new StaticQueryContext(C);      DynamicQueryContext DQC=new DynamicQueryContext(C);                    //indentation      Properties props=new Properties();      props.setProperty(OutputKeys.METHOD,"xml");      props.setProperty(OutputKeys.INDENT,"yes");      try{         //"prepare" the wrap.xml         outFile=new File(xmlFileName);                    destStream=new FileOutputStream(outFile);         //compile the XQuery query         exp=SQC.compileQuery(query);         SQC=exp.getStaticContext();          }catch(net.sf.saxon.trans.XPathException e)            {System.err.println(e.getMessage());         }catch(java.io.IOException e)            {System.err.println(e.getMessage());}                try{                       //execute the query and wrap the result into wrap.xml         SequenceIterator SI=exp.iterator(DQC);          DocumentInfo DI=QueryResult.wrap(SI,C);          QueryResult.serialize(DI,new                          StreamResult(destStream),props,C);          destStream.close();         }catch(net.sf.saxon.trans.XPathException e)            {System.err.println(e.getMessage());         }catch(java.io.IOException e)            {System.err.println(e.getMessage());}                                }   }Result:<?xml version="1.0" encoding="UTF-8"?>   1   2   3
Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as