91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

FileInputStream 與 FileOutputStream在Java中各有哪些作用

發布時間:2020-11-19 15:38:34 來源:億速云 閱讀:172 作者:Leah 欄目:編程語言

FileInputStream 與 FileOutputStream在Java中各有哪些作用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

FileInputStream 和 FileOutputStream 介紹

FileInputStream 是文件輸入流,它繼承于InputStream。

通常,我們使用FileInputStream從某個文件中獲得輸入字節。

FileOutputStream 是文件輸出流,它繼承于OutputStream。

通常,我們使用FileOutputStream 將數據寫入 File 或 FileDescriptor 的輸出流。

FileInputStream 函數接口

FileInputStream(File file)   // 構造函數1:創建“File對象”對應的“文件輸入流”
FileInputStream(FileDescriptor fd) // 構造函數2:創建“文件描述符”對應的“文件輸入流”
FileInputStream(String path)  // 構造函數3:創建“文件(路徑為path)”對應的“文件輸入流”
int  available()    // 返回“剩余的可讀取的字節數”或者“skip的字節數”
void  close()     // 關閉“文件輸入流”
FileChannel  getChannel() // 返回“FileChannel”
final FileDescriptor  getFD() // 返回“文件描述符”
int  read()     // 返回“文件輸入流”的下一個字節
int  read(byte[] buffer, int byteOffset, int byteCount) // 讀取“文件輸入流”的數據并存在到buffer,從byteOffset開始存儲,存儲長度是byteCount。
long  skip(long byteCount) // 跳過byteCount個字節

FileOutputStream 函數接口 

FileOutputStream(File file)     // 構造函數1:創建“File對象”對應的“文件輸入流”;默認“追加模式”是false,即“寫到輸出的流內容”不是以追加的方式添加到文件中。
FileOutputStream(File file, boolean append) // 構造函數2:創建“File對象”對應的“文件輸入流”;指定“追加模式”。
FileOutputStream(FileDescriptor fd)   // 構造函數3:創建“文件描述符”對應的“文件輸入流”;默認“追加模式”是false,即“寫到輸出的流內容”不是以追加的方式添加到文件中。
FileOutputStream(String path)     // 構造函數4:創建“文件(路徑為path)”對應的“文件輸入流”;默認“追加模式”是false,即“寫到輸出的流內容”不是以追加的方式添加到文件中。
FileOutputStream(String path, boolean append) // 構造函數5:創建“文件(路徑為path)”對應的“文件輸入流”;指定“追加模式”。
void     close()  // 關閉“輸出流”
FileChannel    getChannel() // 返回“FileChannel”
final FileDescriptor getFD()  // 返回“文件描述符”
void     write(byte[] buffer, int byteOffset, int byteCount) // 將buffer寫入到“文件輸出流”中,從buffer的byteOffset開始寫,寫入長度是byteCount。
void     write(int oneByte) // 寫入字節oneByte到“文件輸出流”中

示例程序

關于FileInputStream和FileOutputStream的API用法,參考示例代碼(FileStreamTest.java):  

 import java.io.File;
 import java.io.FileDescriptor;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.BufferedInputStream;
 import java.io.BufferedOutputStream;
 import java.io.PrintStream;;
 import java.io.IOException;
 /**
 * FileInputStream 和FileOutputStream 測試程序
 *
 * 
 */
 public class FileStreamTest {
  private static final String FileName = "file.txt";
  public static void main(String[] args) {
   testWrite();
   testRead();
  }
  /**
  * FileOutputStream 演示函數
  *
  * 運行結果:
  * 在源碼所在目錄生成文件"file.txt",文件內容是“abcdefghijklmnopqrstuvwxyz”
  *
  * 加入,我們將 FileOutputStream fileOut2 = new FileOutputStream(file, true);
  *  修改為 FileOutputStream fileOut2 = new FileOutputStream(file, false);
  * 然后再執行程序,“file.txt”的內容變成"0123456789"。
  * 原因是:
  * (01) FileOutputStream fileOut2 = new FileOutputStream(file, true);
  *  它是以“追加模式”將內容寫入文件的。即寫入的內容,追加到原始的內容之后。
  * (02) FileOutputStream fileOut2 = new FileOutputStream(file, false);
  *  它是以“新建模式”將內容寫入文件的。即刪除文件原始的內容之后,再重新寫入。
  */
  private static void testWrite() {
   try {
    // 創建文件“file.txt”對應File對象
    File file = new File(FileName);
    // 創建文件“file.txt”對應的FileOutputStream對象,默認是關閉“追加模式”
    FileOutputStream fileOut = new FileOutputStream(file);
    // 創建FileOutputStream對應的PrintStream,方便操作。PrintStream的寫入接口更便利
    PrintStream out1 = new PrintStream(fileOut1);
    // 向“文件中”寫入26個字母
    out1.print("abcdefghijklmnopqrstuvwxyz");
    out1.close(); 
    // 創建文件“file.txt”對應的FileOutputStream對象,打開“追加模式”
    FileOutputStream fileOut2 = new FileOutputStream(file, true);
    // 創建FileOutputStream對應的PrintStream,方便操作。PrintStream的寫入接口更便利
    PrintStream out2 = new PrintStream(fileOut2);
    // 向“文件中”寫入"0123456789"+換行符
    out2.println("0123456789");
    out2.close();
   } catch(IOException e) {
    e.printStackTrace();
   }
  }
  /**
  * FileInputStream 演示程序
  */
  private static void testRead() {
   try {
    // 方法:新建FileInputStream對象
    // 新建文件“file.txt”對應File對象
    File file = new File(FileName);
    FileInputStream in1 = new FileInputStream(file);
    // 方法2:新建FileInputStream對象
    FileInputStream in2 = new FileInputStream(FileName);
    // 方法3:新建FileInputStream對象
    // 獲取文件“file.txt”對應的“文件描述符”
    FileDescriptor fdin = in2.getFD();
    // 根據“文件描述符”創建“FileInputStream”對象
    FileInputStream in3 = new FileInputStream(fdin);
    // 測試read(),從中讀取一個字節
    char c1 = (char)in1.read();
    System.out.println("c1="+c1);
    // 測試skip(long byteCount),跳過4個字節
   in1.skip(25);
    // 測試read(byte[] buffer, int byteOffset, int byteCount)
    byte[] buf = new byte[10];
    in1.read(buf, 0, buf.length);
   System.out.println("buf="+(new String(buf)));
   // 創建“FileInputStream”對象對應的BufferedInputStream
   BufferedInputStream bufIn = new BufferedInputStream(in3);
   // 讀取一個字節
   char c2 = (char)bufIn.read();
   System.out.println("c2="+c2);
   in1.close();
    in2.close();
    in3.close();
   } catch(IOException e) {
   e.printStackTrace();
   }
  }
 } 

運行結果:

c1=a
buf=0123456789
c2=a

結果說明:

運行程序,會在源碼所在位置新生成一個文件“file.txt”。它的內容是“abcdefghijklmnopqrstuvwxyz0123456789”。

關于FileInputStream 與 FileOutputStream在Java中各有哪些作用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巴南区| 象山县| 平山县| 合肥市| 定安县| 泽普县| 夏邑县| 墨脱县| 尤溪县| 合川市| 和顺县| 海宁市| 延津县| 双柏县| 博湖县| 舟山市| 沂水县| 漳州市| 通城县| 平阳县| 鄱阳县| 大安市| 沾化县| 车险| 麻江县| 汉阴县| 宜阳县| 获嘉县| 绩溪县| 尉犁县| 中牟县| 石柱| 金川县| 广灵县| 蓬安县| 建平县| 尼玛县| 屯留县| 博白县| 九龙城区| 东丰县|