首页 > 编程语言 > 详细

java读取unicode文件

时间:2014-09-21 23:04:22      阅读:653      评论:0      收藏:0      [点我收藏+]

主要介绍使用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文件截图

bubuko.com,布布扣


unicode编码

bubuko.com,布布扣


输出结果是:

bubuko.com,布布扣


我们发现是一样的,也就是可以正常的输出unicode编码。

java读取unicode文件

原文:http://blog.csdn.net/itbuluoge/article/details/39457403

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!