3

CSV ファイルを生成する Java クラスを作成しました。

public class CSVGenerator {

    private static String REFERRAL_HEADER = "Position,Mail,Invitations,Qualified invitations";
    private static String TOPS_HEADER = "Position,Mail,Number of conferences,Number of new contacts, Average conf duration";

    public static String generate(String source, JsonNode root) throws IOException {
        String result = "";
        CSVWriter writer = new CSVWriter(new FileWriter(source+".csv"));
        if (source.compareTo("referral") == 0)
            result = REFERRAL_HEADER;
        else if (source.compareTo("tops") == 0)
            result = TOPS_HEADER;
        writer.writeNext(result.split(","));
        Iterator<JsonNode> it = root.getElements();
        while (it.hasNext()) {
            Iterator<JsonNode> it2 = it.next().getElements();
            result = "";
            while (it2.hasNext())
            {
                result += it2.next().asText();
                if (it2.hasNext())
                    result += ",";
            }
            writer.writeNext(result.split(","));
        }
        writer.close();
        return result;
    }
}

結果のファイルは整形式ではありません。次のように、すべてのセルと区切りコンマを含む、行ごとに 1 つのセルしかありません。

header1,header2,header3
1,support,test
2,alpha,gamma

私は何を間違っていますか?

編集:

出力をより正確にするには

私は持っています: "header1、header2、header3"、""、""

私が欲しい:「header1」、「header2」、「header3」

これが私の出力です。1 つの一意のセル内の各行。

   ""Position","Mail","Invitations","Qualified invitations""
    ""1","xxxxx.com","129","23""
    ""2","xxxx.com","54","8""
    ""3","xxxx.com","197","5""
    ""4","xxxx","13","5""
    ""5","xxxx","8","4""
    ""6","xxxx.com","4","4""
    ""7","xxx.com","31","3""
    ""8","xxx.com","30","3""
    ""9","xxx.com","18","3""
    ""10","xxx.com","13","3""
4

4 に答える 4

-1

Groovy シェルでコードのサブセットを試したところ、正しい結果が得られました。

groovy:000> string = new java.io.StringWriter()
===> 
csv = new CSVWriter(string)
===> au.com.bytecode.opencsv.CSVWriter@4d9ac0b4
groovy:000> csv.writeNext(REFERRAL_HEADER.split(","))
===> null
groovy:000> string.toString()
===> "Position","Mail","Invitations","Qualified invitations"

その CSVWriter の代わりにcommons-csvを使用してみてください。そのライブラリは、データベースに合わせて調整されているため、少しファンキーです。

于 2015-08-27T03:43:32.173 に答える
-1

多分これは良いでしょう。乾杯!

result += \"+data.asText()+\";
于 2013-07-19T15:20:37.887 に答える