我试图通过网络搜索,但没有得到我的问题的答案。我有一个带有一行的 csv 文件:"Good morning" he said
. 我的程序只是从文件中读取文本并打印出来:
BufferedReader in = new BufferedReader(new FileReader("XXXX/myfile.csv"));
String line;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
但是,输出的引号比原始的多:
"""Good morning"" he said."
你能告诉我如何转义这些引号,以便它像在文件中一样打印出来吗?