我有一个要转换为 xml 的字符串列表。我将如何使用 DOM 来做到这一点?我不确定如何使用字符串创建文档以用作Source
生成 XML。
谁能给我看一个生成文档的示例代码?例如,XML 如下:
ArrayList<String> fruits
<Fruits>
<fruit>Apple<fruit>
<fruit>Grape<fruit>
<Fruits>
我认为代码将是:
TransformerFactory transFact = TransformerFactory.newInstance();
Transformer serializer = transFact.newTransformer();
Properties props = new Properties();
props.put("method", "xml");
props.put("indent", "yes");
serializer.setOutputProperties(props);
Source source = new DOMSource(document); //need to create a document
Result result = new StreamResult(PrintWriter);