gpt4 book ai didi

java - Buffered Writer 有时会创建符号而不是数字

转载 作者:行者123 更新时间:2023-12-01 09:31:17 26 4
gpt4 key购买 nike

所以我有一个程序,它收集一堆数据并连续将数据连接成一个字符串,每个条目之间有一个空格。在我的关闭例程中,我使用缓冲写入器将字符串打印到 txt 文件中。大约 50% 的情况下,数据(大部分)显示为中文符号。 VM 是否在执行一些奇怪的 Unicode 操作?为什么这种情况只是偶尔发生?

我浏览过其他论坛,但没有看到此问题的其他实例。我认识的其他计算机专业学生都不明白发生了什么。

编辑:数据均为 0-1365 范围内的整数;

更新:经过进一步研究,我发现 this这让我觉得可能需要 PrintStream 而不是 BufferedWriter 有谁能对此说一下吗?我测试了 PrintStream,但无法像使用 BufferedWriter 那样使用 FileWriter 构建它,这意味着我需要更多研究才能写入我的 txt。

更新:打印到控制台不会导致此错误发生。我会接受一个解释记事本(我用来打开txt的程序)有时显示数字有时显示符号的答案。

相关代码如下:

 //fields
private static BufferedWriter out;
private File saveFile;
String data;
//inside constructor
this.saveFile = new File("C:\\Users\\HPlaptop\\Desktop\\MouseData.txt");
this.saveFile.delete();
try{this.saveFile.createNewFile();}
catch (IOException e ){System.out.println("File creation error");}
try {out = new BufferedWriter(new FileWriter("C:\\Users\\HPlaptop\\Desktop\\MouseData.txt"));}
catch (IOException e) {System.out.println("IO Error");}
this.control.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{ //there is a method call here but the basics are below
out.write(data);
out.close();
System.exit(0);
}
});

以下是正确打印的示例数据集:

 1365 767 1365 767 1365 767 1364 767 1353 756 1268 692 1114 604 980 488 812 334 744 283 694 244 593 150 473 81 328 13 207 0 124 0 115 0 102 0 99 6 107 13 132 20 173 32 187 31 190 25 194 20 201 17 215 14 221 10 224 7 224 7 224 7 226 6 226 6 226 6 226 6 226 6 226 6 226 6

该数据集是几秒钟后拍摄的,不是我想要的

㐀ㄹ㈠㤰㐠㔸㈠㈱㐠㠶㈠㐱㐠㘲㈠㘰㌠㠷ㄠ㔹㌠㌳ㄠ㌹㈠㘹㈠㄰㈠㠷㈠㜳㈠㐶㈠㐷㈠㐶㈠㔷㈠㌶㈠㔵㈠㐵㈠㠰㈠㤴ㄠ㔲㈠㤴㐠‶㐲‹㌱㈠㘴〠㈠㘴〠㈠㘴〠㈠㜴〠㈠㠴〠㈠㠴〠㈠㜴㠠㈠㔴ㄠ‶㐲‵㤱㈠㔴ㄠ‹㐲‵㠱㈠㜴ㄠ‶㐲‹ㄱ㈠〵ㄠ‰㔲‰〱

最佳答案

BufferedWriter 没有出错,并且代码是正确的,除了使用的冗余

this.saveFile.delete();
try{this.saveFile.createNewFile();}
catch (IOException e ){System.out.println("File creation error");}

new FileWriter

打开文件时发生读取数据错误。根据打开数据的程序的不同,由于软件读取数据的方式不同,会显示不同的结果。记事本显示符号是因为它将数字解释为 ASCII。控制台不会尝试解释数据,只是显示写入的内容。使用不尝试解释文件中的数字的程序将允许正确查看数据。

关于java - Buffered Writer 有时会创建符号而不是数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39379958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com