-1

所以我有一个程序可以收集一堆数据并不断地将数据连接成一个字符串,每个条目之间有一个空格。在我的关闭例程中,我使用缓冲写入器将字符串打印到 txt 文件中。大约 50% 的时间数据显示为(大部分)中文符号。虚拟机是否在做一些奇怪的 Unicode 东西?为什么这种情况有时会发生?

我在其他论坛上环顾四周,并没有看到这个问题的其他实例。我认识的其他 CS 专业的学生都不了解发生了什么。

编辑:数据是0-1365范围内的所有整数;

更新:经过进一步研究,我发现让我认为可能需要 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

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

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

2 回答 2

1

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

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

new FileWriter

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

于 2016-09-08T02:49:21.983 回答
0

由于您没有提供将哪些数据写入流中的示例,因此您可能正在经历灌木隐藏事实的现象。

于 2016-09-07T22:52:05.387 回答