我有使用UTF8编码的文本文件(针对特定语言的字符).
我需要使用RandomAccessFile来寻找特定的位置并从中读取.
我需要使用RandomAccessFile来寻找特定的位置并从中读取.
我想逐行阅读
String str = myreader.readLine(); //returns wrong text,not decoded String str myreader.readUTF(); //An exception occurred: java.io.EOFException
解决方法
您可以使用以下代码将stringLine readLine转换为UTF8:
public static void main(String[] args) throws IOException { RandomAccessFile raf = new RandomAccessFile(new File("MyFile.txt"),"r"); String line = raf.readLine(); String utf8 = new String(line.getBytes("ISO-8859-1"),"UTF-8"); System.out.println("Line: " + line); System.out.println("UTF8: " + utf8); }
MyFile.txt的内容:(UTF-8编码)
Привет из Украины
控制台输出:
Line: ÐÑÐ¸Ð²ÐµÑ Ð¸Ð· УкÑÐ°Ð¸Ð½Ñ UTF8: Привет из Украины