我需要的是第3点:
到目前为止我做了什么:
(1)。取一个xsd文件“testField.xsd”并使用“com.codename1.xml.XMLParser”解析它
InputStream is = Display.getInstance()。getResourceAsStream(null, “/testField.xsd"+fileName);
元素响应= xp.parse(new InputStreamReader(is));
(2)。改变这个xsd文件并生成结果
for(FormData fromDataObj : listInputs){ response.getElementById(fromDataObj.getInputId()).setAttribute("value",fromDataObj.getInputValue()); }
(3)。现在我想用名称testValues.xsd
保存这个xsd文件//想要将上面的响应保存为“testValues.xsd”
答案 0 :(得分:0)
查看它能够将Element写入XML的XmlWriter
类。