问答详情
源自:3-1 RandomAccessFile基本操作

为什么我用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();
   }
  }
  
 }
}


提问者:栗喵 2016-05-24 18:09

个回答

  • 天子当歌
    2016-05-24 20:39:20

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

    raf.seek(0);

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

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

    }

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