1

我有一个关于将数据从 CSV 转换为 XML 或 JSON 的问题,其中必须保留数据的层次结构。

例如,如果我有这样的 CSV 数据:

type,brand,country,quantity
apple,golden_delicious,english,1
apple,golden_delicious,french,2
apple,cox,,4
apple,braeburn,,1
banana,,carribean,6
banana,,central_america,7
clememtine,,,3

我想要的是保留 XML 中的层次结构,以便我得到类似的东西:

<fruit>
<type = "apple">
<brand = "golden_delicious">
<country = "english" quantity =  "1">
<country = "french" quantity =  "2">
</brand>
<brand = "cox">
<quantity =  "4">
</brand>
<brand = "braeburn">
<quantity =  "1">
</brand>
</type>
<type = "banana">
<country = "carribean" quantity =  "6">
<country = "central_america" quantity =  "7">
</type>
<type = "clementine">
<quantity =  "3">
</type>
<fruit />

是最好尝试使用 JAXP 还是将上面的内容简单地转换为父子表,然后将数据写入字符串数组进行处理,?像这样:

parent,child 
fruit,apple
apple,golden_delicious
golden_delicious,english
golden_delicious,french
english,1
french,2
apple,cox
cox,4
apple,braeburn
braeburn,1

等等。

或者,还有更好的方法?

谢谢

西蒙·莱文森

4

1 回答 1

1

如果 csv 没有按顺序排序会发生什么?

无论如何,当尝试解析 csv 文件时,请使用: http: //www.codeproject.com/KB/database/CsvReader.aspx

它非常快速且易于使用

R

于 2009-05-29T12:37:37.453 回答