我正在使用 Staxmate API 生成 XML 文件。阅读教程后:http ://staxmate.codehaus.org/Tutorial我尝试在我的代码中进行更改。最后我添加了电话
doc.setIndentation("\n ", 1, 1);
这会导致新生成的 XML 文件为空!如果没有此方法调用,整个 XML 文件将按预期生成。
怀疑项目设置中有问题,我使用教程中给出的代码在同一个包中创建了一个测试类:
package ch.synlogic.iaf.export;
import java.io.File;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamException;
import org.codehaus.staxmate.SMOutputFactory;
import org.codehaus.staxmate.out.SMOutputDocument;
import org.codehaus.staxmate.out.SMOutputElement;
public class Test {
public static void main(String[] args) {
main("c:\\tmp\\empl.xml");
}
public static void main(String fname)
{
// 1: need output factory
SMOutputFactory outf = new SMOutputFactory(XMLOutputFactory.newInstance());
SMOutputDocument doc;
try {
doc = outf.createOutputDocument(new File(fname));
// (optional) 3: enable indentation (note spaces after backslash!)
doc.setIndentation("\n ", 1, 1);
// 4. comment regarding generation time
doc.addComment(" generated: "+new java.util.Date().toString());
SMOutputElement empl = doc.addElement("employee");
empl.addAttribute(/*namespace*/ null, "id", 123);
SMOutputElement name = empl.addElement("name");
name.addElement("first").addCharacters("Tatu");
name.addElement("last").addCharacters("Saloranta");
// 10. close the document to close elements, flush output
doc.closeRoot();
} catch (XMLStreamException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
现在,当我从我的代码中调用该main(String)
方法时,问题仍然存在,而如果我只是按原样运行类 Test,它可以顺利运行!我的代码涉及数据库初始化和其他一些特定于产品的操作。
我迷路了,有什么想法应该如何进行吗?