码迷,mamicode.com
首页 > 编程语言 > 详细

java读取unicode文件

时间:2014-09-21 23:56:31      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   使用   java   ar   文件   2014   

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

标签:blog   http   io   os   使用   java   ar   文件   2014   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!