我有一个带有逗号分隔值的平面 .txt 文件,例如:
1,name1,department1
2,name2,department2
3,name3,department3
...
...
现在我想从 .txt 文件中读取这些记录并将其写入 xml,输出应该是这样的:
<Employees>
<Employee>
<Code>1</Code>
<Name>name1</Name>
<Department>department1</Department>
</Employee>
<Employee>
<Code>2</Code>
<Name>name2</Name>
<Department>department2</Department>
</Employee>
<Employee>
<Code>3</Code>
<Name>name3</Name>
<Department>department3</Department>
</Employee>
</Employees>
所以现在为了实现这一点,我已经经历了各种问题/帖子,不知何故我对我应该遵循的方法以及我应该使用哪个 XMLBuilder 感到困惑,比如 XStream ?
谁能告诉我应该采用哪种方法才能获得最佳性能?