字符流讀取數(shù)據(jù)不會(huì)產(chǎn)生亂碼問題
字節(jié)流讀取數(shù)據(jù)可能會(huì)因?yàn)樽址煌?,每個(gè)字符對應(yīng)的字符大小不同
而產(chǎn)生亂碼/
靈璧網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,靈璧網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為靈璧上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請找那個(gè)售后服務(wù)好的靈璧做網(wǎng)站的公司定做!
Read read= new FileReader(File f);或路徑
操作方法:
除了流的選擇改變和字節(jié)數(shù)組變成了字符數(shù)組,其他都一樣
public class test{
public static void main(String[]args)
{
File f =new File("C:/Users/10853/eclipse-workspace/hell/src/hell/abc");
Reader reader=null;
try {
reader=new FileReader(f);
**char[] flush =new char[1024];**
int len=-1;
try {
while((**len=reader.read(flush))!=-1**)
{//字符數(shù)組-->字符串
**String s=new String(flush,0,len);**
System.out.println(s);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}catch(IOException e)
{
e.printStackTrace();
}finally {
try {
if(null!=reader)
{
reader.close();
}
}catch(IOException e)
{
e.printStackTrace();
}
}
}
}