我目前正在尝试使用DOM解析器在JAVA中创建XML文档。我正在使用另一个问题中发布的另一个答案,这对我帮助很大,但是答案并没有详细说明,以帮助我处理我所遇到的几个案例。让我首先展示我到目前为止如何声明我的XML文件:
package creatingXML;
import java.io.File;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
public class CreateXML
{
public static void main(String args[]){
try{
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
Document doc = docBuilder.newDocument();
Element rootElement = doc.createElement("Document");
doc.appendChild(rootElement);
Element BkToCstmrDbtCdtNtfctn = doc.createElement("BkToCstmrDbtCdNtfctn");
rootElement.appendChild(BkToCstmrDbtCdtNtfctn);
Element GrpHdr = doc.createElement("GrpHdr");
BkToCstmrDbtCdtNtfctn.appendChild(GrpHdr);
Element MsgId = doc.createElement("MsgId");
GrpHdr.appendChild(MsgId);
MsgId.appendChild(doc.createTextNode("0000000")); //MSG ID WILL GO HERE
Element CreDtTm = doc.createElement("CreDtTm");
GrpHdr.appendChild(CreDtTm);
CreDtTm.appendChild(doc.createTextNode("2016-03-31T02:51:44")); //CREDIT DATE TIME WILL GO HERE
//MsgRcpt Tree
Element MsgRcpt = doc.createElement("MsgRcpt");
GrpHdr.appendChild(MsgRcpt);
Element Id = doc.createElement("Id");
MsgRcpt.appendChild(Id);
Element OrgId = doc.createElement("OrgId");
Id.appendChild(OrgId);
Element Othr = doc.createElement("Othr");
OrgId.appendChild(Othr);
Element Id2 = doc.createElement("Id");
Othr.appendChild(Id2);
Id2.appendChild(doc.createTextNode("CS")); //Org ID will go here!
Element Ntfctn = doc.createElement("Ntfctn");
BkToCstmrDbtCdtNtfctn.appendChild(Ntfctn);
Element Id3 = doc.createElement("Id");
Ntfctn.appendChild(Id3);
Id3.appendChild(doc.createTextNode("163V2514435W14QI")); //Transaction ID will go here!
Element CreDtTm2 = doc.createElement("CreDtTm");
Ntfctn.appendChild(CreDtTm2);
CreDtTm2.appendChild(doc.createTextNode("2016-03-31T02:51:44")); //Transaction credit date time will go here!
//Acct tree
Element Acct = doc.createElement("Acct");
Ntfctn.appendChild(Acct);
Element Id4 = doc.createElement("Id");
Acct.appendChild(Id4);
Element Othr2 = doc.createElement("Othr");
Id4.appendChild(Othr2);
Element Id5 = doc.createElement("Id5");
Othr2.appendChild(Id5);
Id5.appendChild(doc.createTextNode("41215212776")); //Acct ID will go here!
//TxsSummry tree
Element TxsSummry = doc.createElement("TxsSummry");
Ntfctn.appendChild(TxsSummry);
Element TtlDbtNtries = doc.createElement("TtlDbtNtries");
TxsSummry.appendChild(TtlDbtNtries);
Element NbOfNtries = doc.createElement("NbOfNtries");
TtlDbtNtries.appendChild(NbOfNtries);
NbOfNtries.appendChild(doc.createTextNode("1")); //Number of entires will go here!
Element Sum = doc.createElement("Sum");
TtlDbtNtries.appendChild(Sum);
Sum.appendChild(doc.createTextNode("97.99")); //Total sum will go here!
//Possible loop will go here
Element Ntry = doc.createElement("Ntry");
Ntfctn.appendChild(Ntry);
Element NtryRef = doc.createElement("NtryRef");
Ntry.appendChild(NtryRef);
NtryRef.appendChild(doc.createTextNode("163V24924AFW1LJ4")); //Ntry Reference ID
Element AmtCcy = doc.createElement("Amt Ccy");
NtryRef.appendChild(AmtCcy);
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(new File("C:\\Users\\jhamric\\Desktop\\testing.xml"));
transformer.transform(source, result);
}catch (ParserConfigurationException pce){
pce.printStackTrace();
}catch (TransformerException tfe){
tfe.printStackTrace();
}
}
}
我知道这是一个很好的代码,但我想通过发布我到目前为止你可以理解我能做的事情。创建元素,分配子元素以及为这些元素指定文本值没有问题。我现在遇到的问题涉及到我需要创建的两个不同元素。
第一个是根元素,我需要使用这样的命名空间:
+<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.04">
而不是像我现在一样。
我确实找到了像这里的答案
Issues with xpath that contained namespaces in Java (Dom parser)
解释使用XPath然而我真的不懂如何用我的代码执行它。
我遇到的第二个问题是这样的字段:
<Amt Ccy="USD">94134.86</Amt>
正如您所看到的那样,标签=&#34; USD&#34;并且还分配了一个文本节点。
我试过这个
Element AmtCcy = doc.createElement("Amt_Ccy='USD'");
但是我收到以下错误..
Exception in thread "main" org.w3c.dom.DOMException: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified.
at com.sun.org.apache.xerces.internal.dom.CoreDocumentImpl.createElement(Unknown Source)
at creatingXML.CreateXML.main(CreateXML.java:103)
Picked up JAVA_TOOL_OPTIONS: -agentlib:jvmhook
Picked up _JAVA_OPTIONS: -Xrunjvmhook -Xbootclasspath/a:"C:\Program Files (x86)\HP\Unified Functional Testing\bin\java_shared\classes";"C:\Program Files (x86)\HP\Unified Functional Testing\bin\java_shared\classes\jasmine.jar"
我非常感谢对这两个问题的任何帮助。
答案 0 :(得分:3)
使用createElementNs
:
Element rootElement doc.createElementNS("urn:iso:std:iso:20022:tech:xsd:camt.054.001.04",
"Document");
第二个<Amt Ccy="USD">94134.86</Amt>
是元素Amt
,其属性Ccy
的值为USD
,文本上下文为94134.86
。
要创建属性write:
Element AmtCcy = doc.createElement("Amty");
AmtCcy.setAttribute("Ccy", "USD");
NtryRef.appendChild(AmtCcy);
答案 1 :(得分:1)
对于你的第二个问题,它失败了,因为createElement只是将标记名称作为参数,你不能在其中放置表达式,因为它只会尝试使用字面意思创建一个标记。我并不是100%确定你要做的是什么,但我假设Ccy是Element的一个属性,所以你可以这样做
Element AmtCcy = doc.createElement("Amt");
AmtCcy.setAttribute("Ccy","USD");
如果您愿意,也可以使用setAttribute设置命名空间。
rootElement.setAttribute("xmlns", "urn:iso:std:iso:20022:tech:xsd:camt.054.001.04")
但您应该使用文档的