我正在使用RandomAccessFile.writeChar()写入文件
RandomAccessFile newWiz = new RandomAccessFile(path + name + ".txt", "rw");
newWiz.writeChars(pre);
newWiz.writeChars(wizard);
pre和向导只是字符串
到目前为止,它一直有效,并且为我创建了带有文本的txt文件。但是,使用扫描仪框读取文件时,每个字符之间会添加符号。
Comparison between file i wrote myself, and file that was writter with writeChars()
我不得不在这里使用图片,因为我无法复制带有框的粘贴