0

我的输出没有问题 我得到的输出看起来像这样 01:08.0 02:07.6 03:07.1 04:07.1 05:07.4 06:07.2 07:07.6 08:07.1 09:07.1 10:07.2 当我点击on 给了我相应的时间。输出实际上应该看起来像这样 1:8.035156,2:7.619141,3:7.105469,4:7.072266 只有当我在 append 语句的末尾添加“,”字符时才会发生错误的输出。

public class GeneCsv {
 public static void main(String[]args) throws IOException{
File file = new File("file.csv");
FileWriter writer = new FileWriter("/Users/home/fileExpression.csv");
PrintWriter pw = new PrintWriter(writer);
Scanner in = new Scanner(file);
boolean firstLine = true;
String[] temp = null;
while(in.hasNextLine()){
    if(firstLine== true){


        pw.println(in.nextLine());
        firstLine= false;
        continue;
    }
    else{
    String line = in.nextLine();
    temp = line.split(",");
    for(int i =0; i < temp.length ; i++){
        pw.append(i + ":" + temp[i] + ",");

    }
    pw.append("\n");
    }
    }


pw.flush();
pw.close();
writer.close();
}
    }
4

3 回答 3

0

除了换行之外,如果要保留逗号,则需要像这样附加它,pw.print(i + ":" + temp[i] + ",") 因为拆分数组不会保留拆分器

于 2012-05-22T06:37:34.197 回答
0

您永远不会向 pw 打印新行。在 for 循环之外做一个pw.print("\n");.

于 2012-05-22T04:36:16.960 回答
0

我从您的问题中了解到的是,您需要在单独的行中打印每个逗号分隔值。

为此,只需在循环"\n"外打印一个换行符:for

for(int i =1; i < temp.length ; i++){
   pw.print(i + ":" + temp[i]);    
}
pw.print("\n");

希望这可以帮助!

于 2012-05-22T04:41:51.823 回答