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

第八章 源 08_PrintIO

2012-09-10 
第八章 流 08_PrintIO鱼欲遇雨:每日都学习一点,持之以恒,天道酬勤!不能用电脑时,提前补上!(2012.9.2)Print

第八章 流 08_PrintIO

鱼欲遇雨:每日都学习一点,持之以恒,天道酬勤!不能用电脑时,提前补上!(2012.9.2)


Print 流
1   PrintWriter和PrintStream都属于输出流,分别针对于字符和字节。
2   PrintWriter和PrintStream提供了重载的print方法
Println方法用于多种数据类型的输出
3   PrintWriter和PrintStream的输出操作不会抛出异常, 用户通过检测错误状态获取错误信息。
4   PrintWriter和PrintStream有自动flush功能。


PrintWriter( Writer out) 
PrintWriter(Writer out, boolean autoFlush)
PrintWriter(OutputStream out)
PrintWriter(OutputStream out, boolean autoFlush)
PrintWriter(OutputStream out)
PrintWriter(OutputStream out, boolean autoFlush)


示例代码:

// TestPrintStream3.javaimport java.util.*;import java.io.*;public class TestPrintStream3 {public static void main(String args[]) {String s = null;try{BufferedReader br = new BufferedReader (new InputStreamReader(System.in));FileWriter fw = new FileWriter("c:/java/IO/logfile.txt", true);PrintWriter pw = new PrintWriter(fw);while( (s = br.readLine()) != null) {if(s.equalsIgnoreCase("exit"))break;System.out.println(s.toUpperCase());pw.println("-----");pw.println(s.toUpperCase());pw.flush();}pw.println("===" + new Date() + "===");pw.flush();pw.close();}catch (IOException e){e.printStackTrace();}}}



热点排行