Java基礎複習:IO流

來源:互聯網
上載者:User

輸入資料流:檔案 --->程式

輸出資料流:程式---->檔案

 

Java中的四種抽象流:

輸入資料流:InputStream(位元組輸入資料流) Reader(字元輸入資料流)

輸出資料流:OutputStream(位元組輸出資料流) Writer(字元輸出資料流)

區別:

字元流常用語操作文字檔,對於映像、音視頻等檔案,則只能用位元組流。

 

操作流的步驟:

1)得到IO操作的源或目標

2)得到IO操作的通道

3)進行IO操作

4)關閉IO

 

OutputStream:

import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;public class OuputStreamDemo {public static void main(String[] args) throws IOException {//1.找到流的目標File file = new File("d:/Test/test.txt");//2.建立輸出資料流的管道,並串連上目標OutputStream os = new FileOutputStream(file);//3.輸入輸出//位元組輸出資料流只能一個一個直接的寫資料os.write('\n');for (int i = 0; i < 20; i++) {os.write(i);}String str = "hello,world";byte[] b = str.getBytes();os.write(b);//4.關閉操作os.close();}}

InputStream:

import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;public class InputStreamDemo {public static void main(String[] args) throws IOException {File file = new File("D:/Test/筆記.txt");InputStream is = new FileInputStream(file);byte[] buff = new byte[1024];int len = 0;while((len=is.read(buff))!=-1){String str = new String(buff,0,len);System.out.println(str);}//中文會亂碼,中文是雙位元組,英文為單位元組is.close();}}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.