我正在使用Staxmate API生成XML文件。阅读教程后:http://staxmate.codehaus.org/Tutorial我尝试在代码中进行更改。最后我加了电话

doc.setIndentation("\n  ", 1, 1);


这将导致新生成的XML文件为空!如果没有此方法,则将按预期生成整个XML文件。

怀疑项目设置中有些混乱,我使用教程中给出的代码在同一包中创建了一个Test类:

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类,它将顺利进行!我的代码涉及数据库初始化和某些其他产品特定的操作。

我迷路了,对如何进行此操作有任何想法吗?

最佳答案

缩进可与Woodstox API一起使用

WstxOutputFactory factory = new WstxOutputFactory();
factory.setProperty(WstxOutputFactory.P_AUTOMATIC_EMPTY_ELEMENTS, true);
SMOutputFactory outf = new SMOutputFactory(factory);
doc = outf.createOutputDocument(fout);
doc.setIndentation("\n  ", 1, 1);

10-07 23:34