首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

JAVA流操作(2)文件流

JAVA流操作(2)文件流

File f = new File("test.txt");
//构建文件对象
RandomAccessFile f = new RandomAccessFile("Hello.txt","rw");
//构建随机访问文件对象


FileOutputStream fout = new FileOutputStream(f);
//文件输出流,数据从流中写入文件FileInputStream fout = new FileInputStream(f);
//文件输入流,数据从文件中写入流

附一个中文出现乱码的解决方案:
  • public
    static String parseChinese(String inStr)   
  • {   
  •     String s = null;   
  •     byte temp[];   
  •     if (inStr == null)   
  •     {   
  •         return
    new String("");   
  •     }   
  •     try
  •     {   
  •         temp=inStr.getBytes("iso-8859-1");   
  •     s = new String(temp);   
  •     }   
  •     catch(UnsupportedEncodingException e)   
  •     {   
  •         System.out.println (e.toString());   
  •     }   
  •     return s;   
  •        }   
  • };  
返回列表