WEB开发网
开发学院WEB开发Jsp Java操作文本文件中的中文 阅读

Java操作文本文件中的中文

 2008-01-05 09:10:20 来源:WEB开发网   
核心提示:try{RandomaccessFile rf=new RandomAccessFile("e:\\my.txt","rw");String str="中文";byte [] b;b=str.getBytes();rf.write(b);//中文就写入文本文件

  try{
RandomaccessFile rf=new RandomAccessFile("e:\\my.txt","rw");
String str="中文";
byte [] b;
b=str.getBytes();
rf.write(b);//中文就写入文本文件了。
}
catch(Exception e){}

try{
BufferedReader br=new BufferedReader(new FileReader("e:\\my.txt"));
while((line=br.readLine())!=null)
{
System.out.PRintln(line);//读取文件
}}
catch(Exception e){}

Tags:Java 操作 文本

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接