首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

字节流跟字符流相关

2012-12-19 
字节流和字符流相关两种常用的流代码?各个流的特殊API整理待续。。。?File file new File()PrintWriter

字节流和字符流相关

两种常用的流代码

?

各个流的特殊API整理待续。。。

?

File file = new File("");PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(file.getOutputStream())), true);out.println("haha");out.println("heihei");out.close();BufferedReader in = new BufferedReader(new InputStreamReader(file.getInputStream()));String str;while((str =in.readLine())!=null)System.out.println(str);

热点排行