主要介绍使用java来读取txt文本文件,且每次读取2个字节,也就是采用unicode编码的文本。
FileMain
package com.test.filetest;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class FileMain {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
File myfile=new File(“H:/test.txt”);
//FileReader是字符流,每次读入的是两个字节。
FileReader in=new FileReader(myfile);
int test;
while((test=in.read())!=-1)
{
System.out.println(test);
}
in.close();
}
}
txt文件截图
unicode编码
输出结果是:
我们发现是一样的,也就是可以正常的输出unicode编码。
今天的文章java读取unicode文件_java读取unicode文件分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/26797.html