程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java io學習(二十四) PrintWriter (字符打印輸出流)

java io學習(二十四) PrintWriter (字符打印輸出流)

編輯:關於JAVA

PrintWriter 介紹

PrintWriter 是字符類型的打印輸出流,它繼承於Writer。

PrintStream 用於向文本輸出流打印對象的格式化表示形式。它實現在 PrintStream 中的所有 print 方法。它不包含用於寫入原始字節的方法,對於這些字節,程序應該使用未編碼的字節流進行寫入。

PrintWriter 函數列表

PrintWriter(OutputStream out)
PrintWriter(OutputStream out, boolean autoFlush)
PrintWriter(Writer wr)
PrintWriter(Writer wr, boolean autoFlush)
PrintWriter(File file)
PrintWriter(File file, String csn)
PrintWriter(String fileName)
PrintWriter(String fileName, String csn)
     
PrintWriter     append(char c)
PrintWriter     append(CharSequence csq, int start, int end)
PrintWriter     append(CharSequence csq)
boolean     checkError()
void     close()
void     flush()
PrintWriter     format(Locale l, String format, Object... args)
PrintWriter     format(String format, Object... args)
void     print(float fnum)
void     print(double dnum)
void     print(String str)
void     print(Object obj)
void     print(char ch)
void     print(char[] charArray)
void     print(long lnum)
void     print(int inum)
void     print(boolean bool)
PrintWriter     printf(Locale l, String format, Object... args)
PrintWriter     printf(String format, Object... args)
void     println()
void     println(float f)
void     println(int i)
void     println(long l)
void     println(Object obj)
void     println(char[] chars)
void     println(String str)
void     println(char c)
void     println(double d)
void     println(boolean b)
void     write(char[] buf, int offset, int count)
void     write(int oneChar)
void     write(char[] buf)
void     write(String str, int offset, int count)
void     write(String str)

PrintWriter 源碼

package java.io;
     
import java.util.Objects;
import java.util.Formatter;
import java.util.Locale;
import java.nio.charset.Charset;
import java.nio.charset.IllegalCharsetNameException;
import java.nio.charset.UnsupportedCharsetException;
     
public class PrintWriter extends Writer {
     
    protected Writer out;
     
    // 自動flush
    // 所謂“自動flush”,就是每次執行print(), println(), write()函數,都會調用flush()函數;
    // 而“不自動flush”,則需要我們手動調用flush()接口。
    private final boolean autoFlush;
    // PrintWriter是否右產生異常。當PrintWriter有異常產生時,會被本身捕獲,並設置trouble為true
    private boolean trouble = false;
    // 用於格式化的對象
    private Formatter formatter;
    private PrintStream psOut = null;
     
    // 行分割符
    private final String lineSeparator;
     
    // 獲取csn(字符集名字)對應的Chaset
    private static Charset toCharset(String csn)
        throws UnsupportedEncodingException
    {
        Objects.requireNonNull(csn, "charsetName");
        try {
            return Charset.forName(csn);
        } catch (IllegalCharsetNameException|UnsupportedCharsetException unused) {
            // UnsupportedEncodingException should be thrown
            throw new UnsupportedEncodingException(csn);
        }
    }
     
    // 將“Writer對象out”作為PrintWriter的輸出流,默認不會自動flush,並且采用默認字符集。
    public PrintWriter (Writer out) {
        this(out, false);
    }
     
    // 將“Writer對象out”作為PrintWriter的輸出流,autoFlush的flush模式,並且采用默認字符集。
    public PrintWriter(Writer out, boolean autoFlush) {
        super(out);
        this.out = out;
        this.autoFlush = autoFlush;
        lineSeparator = java.security.AccessController.doPrivileged(
            new sun.security.action.GetPropertyAction("line.separator"));
    }
     
    // 將“輸出流對象out”作為PrintWriter的輸出流,不自動flush,並且采用默認字符集。
    public PrintWriter(OutputStream out) {
        this(out, false);
    }
     
    // 將“輸出流對象out”作為PrintWriter的輸出流,autoFlush的flush模式,並且采用默認字符集。
    public PrintWriter(OutputStream out, boolean autoFlush) {
        // new OutputStreamWriter(out):將“字節類型的輸出流”轉換為“字符類型的輸出流”
        // new BufferedWriter(...): 為輸出流提供緩沖功能。
        this(new BufferedWriter(new OutputStreamWriter(out)), autoFlush);
     
        // save print stream for error propagation
        if (out instanceof java.io.PrintStream) {
            psOut = (PrintStream) out;
        }
    }
     
    // 創建fileName對應的OutputStreamWriter,進而創建BufferedWriter對象;然後將該BufferedWriter作為PrintWriter的輸出流,不自動flush,采用默認字符集。
    public PrintWriter(String fileName) throws FileNotFoundException {
        this(new BufferedWriter(new OutputStreamWriter(new FileOutputStream(fileName))),
             false);
    }
     
    // 創建fileName對應的OutputStreamWriter,進而創建BufferedWriter對象;然後將該BufferedWriter作為PrintWriter的輸出流,不自動flush,采用字符集charset。
    private PrintWriter(Charset charset, File file)
        throws FileNotFoundException
    {
        this(new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), charset)),
             false);
    }
     
    // 創建fileName對應的OutputStreamWriter,進而創建BufferedWriter對象;然後將該BufferedWriter作為PrintWriter的輸出流,不自動flush,采用csn字符集。
    public PrintWriter(String fileName, String csn)
        throws FileNotFoundException, UnsupportedEncodingException
    {
        this(toCharset(csn), new File(fileName));
    }
     
    // 創建file對應的OutputStreamWriter,進而創建BufferedWriter對象;然後將該BufferedWriter作為PrintWriter的輸出流,不自動flush,采用默認字符集。
    public PrintWriter(File file) throws FileNotFoundException {
        this(new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file))),
             false);
    }
     
    // 創建file對應的OutputStreamWriter,進而創建BufferedWriter對象;然後將該BufferedWriter作為PrintWriter的輸出流,不自動flush,采用csn字符集。
    public PrintWriter(File file, String csn)
        throws FileNotFoundException, UnsupportedEncodingException
    {
        this(toCharset(csn), file);
    }
     
    private void ensureOpen() throws IOException {
        if (out == null)
            throw new IOException("Stream closed");
    }
     
    // flush“PrintWriter輸出流中的數據”。
    public void flush() {
        try {
            synchronized (lock) {
                ensureOpen();
                out.flush();
            }
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    public void close() {
        try {
            synchronized (lock) {
                if (out == null)
                    return;
                out.close();
                out = null;
            }
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    // flush“PrintWriter輸出流緩沖中的數據”,並檢查錯誤
    public boolean checkError() {
        if (out != null) {
            flush();
        }
        if (out instanceof java.io.PrintWriter) {
            PrintWriter pw = (PrintWriter) out;
            return pw.checkError();
        } else if (psOut != null) {
            return psOut.checkError();
        }
        return trouble;
    }
     
    protected void setError() {
        trouble = true;
    }
     
    protected void clearError() {
        trouble = false;
    }
     
    // 將字符c寫入到“PrintWriter輸出流”中。c雖然是int類型,但實際只會寫入一個字符
    public void write(int c) {
        try {
            synchronized (lock) {
                ensureOpen();
                out.write(c);
            }
        }
        catch (InterruptedIOException x) {
            Thread.currentThread().interrupt();
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    // 將“buf中從off開始的len個字符”寫入到“PrintWriter輸出流”中。
    public void write(char buf[], int off, int len) {
        try {
            synchronized (lock) {
                ensureOpen();
                out.write(buf, off, len);
            }
        }
        catch (InterruptedIOException x) {
            Thread.currentThread().interrupt();
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    // 將“buf中的全部數據”寫入到“PrintWriter輸出流”中。
    public void write(char buf[]) {
        write(buf, 0, buf.length);
    }
     
    // 將“字符串s中從off開始的len個字符”寫入到“PrintWriter輸出流”中。
    public void write(String s, int off, int len) {
        try {
            synchronized (lock) {
                ensureOpen();
                out.write(s, off, len);
            }
        }
        catch (InterruptedIOException x) {
            Thread.currentThread().interrupt();
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    // 將“字符串s”寫入到“PrintWriter輸出流”中。
    public void write(String s) {
        write(s, 0, s.length());
    }
     
    // 將“換行符”寫入到“PrintWriter輸出流”中。
    private void newLine() {
        try {
            synchronized (lock) {
                ensureOpen();
                out.write(lineSeparator);
                if (autoFlush)
                    out.flush();
            }
        }
        catch (InterruptedIOException x) {
            Thread.currentThread().interrupt();
        }
        catch (IOException x) {
            trouble = true;
        }
    }
     
    // 將“boolean數據對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(boolean b) {
        write(b ? "true" : "false");
    }
     
    // 將“字符c對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(char c) {
        write(c);
    }
     
    // 將“int數據i對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(int i) {
        write(String.valueOf(i));
    }
     
    // 將“long型數據l對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(long l) {
        write(String.valueOf(l));
    }
     
    // 將“float數據f對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(float f) {
        write(String.valueOf(f));
    }
     
    // 將“double數據d對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(double d) {
        write(String.valueOf(d));
    }
     
    // 將“字符數組s”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(char s[]) {
        write(s);
    }
     
    // 將“字符串數據s”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(String s) {
        if (s == null) {
            s = "null";
        }
        write(s);
    }
     
    // 將“對象obj對應的字符串”寫入到“PrintWriter輸出流”中,print實際調用的是write函數
    public void print(Object obj) {
        write(String.valueOf(obj));
    }
     
    // 將“換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println() {
        newLine();
    }
     
    // 將“boolean數據對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println(boolean x) {
        synchronized (lock) {
            print(x);
            println();
        }
    }
     
    // 將“字符x對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println(char x) {
        synchronized (lock) {
            print(x);
            println();
        }
    }
     
    // 將“int數據對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println(int x) {
        synchronized (lock) {
            print(x);
            println();
        }
    }
     
    // 將“long數據對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println(long x) {
        synchronized (lock) {
            print(x);
            println();
        }
    }
     
    // 將“float數據對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
    public void println(float x) {
        synchronized (lock) {
            print(x);
            println();
        }
    }
     
    // 將“double數據對應的字符串+換行符”寫入到“PrintWriter輸出流”中,println實際調用的是write函數
	// 查看本欄目
			
		
		

示例代碼

關於PrintWriter中API的詳細用法,參考示例代碼(PrintWriterTest.java):

import java.io.PrintWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
     
/**
 * PrintWriter 的示例程序
 *
 * @author skywang
 */
public class PrintWriterTest {
     
    public static void main(String[] args) {
     
        // 下面3個函數的作用都是一樣:都是將字母“abcde”寫入到文件“file.txt”中。
        // 任選一個執行即可!
        testPrintWriterConstrutor1() ;
        //testPrintWriterConstrutor2() ;
        //testPrintWriterConstrutor3() ;
     
        // 測試write(), print(), println(), printf()等接口。
        testPrintWriterAPIS() ;
    }
     
    /**
     * PrintWriter(OutputStream out) 的測試函數
     *
     * 函數的作用,就是將字母“abcde”寫入到文件“file.txt”中
     */
    private static void testPrintWriterConstrutor1() {
        final char[] arr={'a', 'b', 'c', 'd', 'e' };
        try {
            // 創建文件“file.txt”的File對象
            File file = new File("file.txt");
            // 創建文件對應FileOutputStream
            PrintWriter out = new PrintWriter(
                    new FileOutputStream(file));
            // 將“字節數組arr”全部寫入到輸出流中
            out.write(arr);
            // 關閉輸出流
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
     
    /**
     * PrintWriter(File file) 的測試函數
     *
     * 函數的作用,就是將字母“abcde”寫入到文件“file.txt”中
     */
    private static void testPrintWriterConstrutor2() {
        final char[] arr={'a', 'b', 'c', 'd', 'e' };
        try {
            File file = new File("file.txt");
            PrintWriter out = new PrintWriter(file);
            out.write(arr);
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
     
    /**
     * PrintWriter(String fileName) 的測試函數
     *
     * 函數的作用,就是將字母“abcde”寫入到文件“file.txt”中
     */
    private static void testPrintWriterConstrutor3() {
        final char[] arr={'a', 'b', 'c', 'd', 'e' };
        try {
            PrintWriter out = new PrintWriter("file.txt");
            out.write(arr);
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
     
    /**
     * 測試write(), print(), println(), printf()等接口。
     */
    private static void testPrintWriterAPIS() {
        final char[] arr={'a', 'b', 'c', 'd', 'e' };
        try {
            // 創建文件對應FileOutputStream
            PrintWriter out = new PrintWriter("other.txt");
     
            // 將字符串“hello PrintWriter”+回車符,寫入到輸出流中
            out.println("hello PrintWriter");
            // 將0x41寫入到輸出流中
            // 0x41對應ASCII碼的字母'A',也就是寫入字符'A'
            out.write(0x41);
            // 將字符串"65"寫入到輸出流中。
            // out.print(0x41); 等價於 out.write(String.valueOf(0x41));
            out.print(0x41);
            // 將字符'B'追加到輸出流中
            out.append('B').append("CDEF");
     
            // 將"CDE is 5" + 回車  寫入到輸出流中
            String str = "GHI";
            int num = 5;
            out.printf("%s is %d\n", str, num);
     
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

運行上面的代碼,會在源碼所在目錄生成兩個文件“file.txt”和“other.txt”。

file.txt的內容如下:

abcde

other.txt的內容如下:

hello PrintWriter

A65BCDEFGHI is 5

來源:http://www.cnblogs.com/skywang12345/p/io_25.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved