RandomAccessFile 읽기, 이동 문제(인코딩상의 문제)
407 단어 ĴAVA 기반
RandomAccessFile raf = new RandomAccessFile(new File(“D:\\ 1 \\ 4.txt”),“rw”);
;
// UTF-8 3, GBK 2
// UTF-8 : 3F , 11 ‘ ’ , BOM
raf.skipBytes(10);
//raf.seek(10);
while((line = raf.readLine())!= null){
System.out.println(new String(line.getBytes(“ISO-8859-1”),“UTF-8”));
}