我正在做一些 AI 项目,我应该在我的 NXT 上使用模糊逻辑实现控制器。为了正确评估我的控制策略,我需要跟踪颜色传感器测量的信息以及发送到电机的数据。为此,我试图实现一个简单的代码来将一些类似的信息写入 .txt 文件。这是我到目前为止所取得的成就:
import java.io.*;
import lejos.nxt.*;
public class DataLogger {
public static void main(String[] args) {
int count = 0;
FileOutputStream fileStream = null;
try {
fileStream = new FileOutputStream(new File("Test.txt"));
} catch (Exception e) {
LCD.drawString("Can't make a file", 0, 0);
System.exit(1);
}
DataOutputStream dataStream = new DataOutputStream(fileStream);
do {
try {
dataStream.writeChars(String.valueOf(count));
fileStream.flush();
count++;
} catch (IOException e) {
LCD.drawString("Can't write to the file", 0, 1);
System.exit(1);
}
} while (count < 100);
try {
fileStream.close();
} catch (IOException e) {
LCD.drawString("Can't save the file", 0, 1);
System.exit(1);
}
}
}
使用此代码,我基本上是在尝试将 0 到 99 之间的数字写入名为 Test.txt 的文件中。我不知道为什么,但程序是这样写数据的:
0 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 2 0 2 1 2 2 ...
如您所见,它在每个数字之间添加了空格。我已经为 DataOutputStream 尝试了许多写入方法,并且dataStream.writeChars(String.valueOf(count));
是“最成功”的一种(其他方法如writeInt(int b)
根据 ASCII 表写入数据)。我也尝试过使用 BufferedOutputStream 类,但没有成功。我可能做错了什么?