0

我有一个平面文件作为输入。我需要使用 Smooks 逐行读取平面文件。谁能给我建议或示例代码如何做到这一点。

4

1 回答 1

-1

这是 Smooks 配置文件 (SmooksConfig_ForFlatFile.xml)。

这里是输入文件 (input-messages.txt) charles moulliard 男 43BE maxence dewil 男 30NL eleonor moulliard 女 12AD

这是java代码: smooks = new Smooks("SmooksConfig_ForFlatFile.xml");

        FileOutputStream fos = new FileOutputStream("FlatFile_Output.xml");
        smooks.filterSource(new StreamSource(new FileInputStream("input-message.txt")), new StreamResult(fos));
于 2015-05-01T16:34:27.850 回答