为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我用RandomAccessFile()类下的writeInt()方法写入后 文件中出现的不是数字 而是方块??

package com.sun;
import java.io.IOException;
import java.io.RandomAccessFile;


public class IntDemo {
 public static void main(String[] args) throws IOException {
  RandomAccessFile raf = new RandomAccessFile("e:\\demo.txt","rw");
  for(int i = 0;i<10;i++){
   try{
    raf.writeInt(i);
   }
   catch(IOException e){
    e.printStackTrace();
   }
  }
  
 }
}


正在回答

1 回答

目测应该可以正确插入,只是编码方式不同,记事本不能正确显示而已。可以在后面用

raf.seek(0);

for(int i=0;i<10;i++){

System.out.println(raf.readInt());

}

验证下,应该可以正确显示在控制台


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我用RandomAccessFile()类下的writeInt()方法写入后 文件中出现的不是数字 而是方块??

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信