列印流特性

2021-08-18 16:49:43 字數 838 閱讀 8346

構造方法,就是列印流的輸出目的端。

-printstream,構造方法,接收file型別,接收字串檔名,接收位元組輸出流outputstream

-printwriter,構造方法,接收file型別,接收字串檔名,接收位元組輸出流,接收字元輸出流writer

public

static

void

function_1() throws filenotfoundexception

public

static

void

function_2() throws ioexception

滿足2個條件:

1. 輸出資料目的必須是流物件,outputstream,writer;

2. 必須呼叫println,printf,format三個方法中的乙個;

public

static

void

function_3() throws filenotfoundexception

public

static

void

main(string args) throws ioexception

pw.close();

bfr.close();

}

列印流和序列流

io包中的其他類 1 列印流 a printwriter和printstream 可以直接操作輸入流和檔案 2 序列流 a sequenceinputstream 對多個流進行合併 3.操作物件 objectinputstream與objectoutputstream 被操作的物件需要實現seria...

列印流概述

列印流,列印資料的,列印流只能是輸出流 printstream 位元組列印流 printwriter 字元列印流 對於printwriter來說,當啟用字段重新整理之後,呼叫println或者printf或者format方法,便會立馬重新整理操作 自動重新整理 如果沒有開啟自動重新整理,則需要手動重...

資料操作流 記憶體操作流 列印流

資料操作流 目前基本沒用 datasource.自己查詢把 記憶體操作流 用來處理臨時儲存資訊的,程式結束時,資料就從記憶體中消失 操作位元組 bytearrayoutputstream 輸出流 寫入操作 bytearrayinputstream 輸入流 讀取資料 字元陣列 chararrayrea...