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

溫馨提示×

溫馨提示×

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

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

java如何將內存數組流的數據寫入文件流中

發布時間:2022-01-06 17:01:18 來源:億速云 閱讀:151 作者:iii 欄目:互聯網科技

本篇內容介紹了“java如何將內存數組流的數據寫入文件流中”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

在 java 字節流入門(文件流)中,我們介紹了 FileOutputStream(FOS) 和 RandomAccessFile(RAF) 兩種寫文件的方式。那么,當我們在內存中使用 ByteArrayOutputStream(BAOS) 維護數據時,如何利用 FOS 和 RAF 寫文件呢,本文介紹四種方法。

準備工作:

   private static final Path path = Paths.get("src", "main", "resources", "test.myfile");
   private static final File file = path.toFile();
   private static int size = 1024*1024*800;
   private static byte[] b1 = new byte[size];
   private static ByteArrayOutputStream out = new ByteArrayOutputStream();

并將 b1 寫入 out 中

out.write(b1);

writeTo寫入FOS

首先,BAOS 有一個方法叫 writeTo(),這個方法可以將 BAOS 中的數據直接寫入另一個字節輸出流中。更準確的說法是,使用另一個字節輸出流的 write() 方法將 BAOS 中的數據寫出去。這里 BAOS 就和一個字節數組是等價的。

   /**
    * Writes the complete contents of this byte array output stream to
    * the specified output stream argument, as if by calling the output
    * stream's write method using <code>out.write(buf, 0, count)</code>.
    *
    * @param      out   the output stream to which to write the data.
    * @exception  IOException  if an I/O error occurs.
    */
   public synchronized void writeTo(OutputStream out) throws IOException {
       out.write(buf, 0, count);
   }

因為 FOS 本身就是 OutputStream,所以可以直接將 BAOS 中的數據通過 writeTo() 寫入 FOS 中。

// 將 BAOS 中的數據寫入 FileOutputStream
   private static void writeToFOS() throws IOException {
       if(file.exists())
           file.delete();
       // 將 ByteArrayOutputStream 緩存的數據寫入 FileOutputStream 中,即寫入文件中
       FileOutputStream fileOutputStream = new FileOutputStream(file, false);

       long time = System.currentTimeMillis();
       out.writeTo(fileOutputStream);
       fileOutputStream.close();
       time = System.currentTimeMillis() - time;
       System.out.println("將 "+ size + " 個字節寫入 FOS 耗時:" + time + "ms");
       file.delete();
   }

writeTo寫入RAF

由于 RandomAccessFile 不是標準的 OutputStream,所以沒法直接用 writeTo() 方法實現。那如何將 BAOS 中的數據寫入 RandomAccessFile 呢?

解決方案是:把 RandomAccessFile 包裝成一個 OutputStream。我們實現一個 自定義的 OutputStream,繼承 OutputStream,并用 RAF 的三種寫方法覆蓋 OutputStream 的原有寫方法。

class MyRandomAccessFileOutputStream extends OutputStream {

   private RandomAccessFile raf;

   public MyRandomAccessFileOutputStream(RandomAccessFile raf) {
       this.raf = raf;
   }

   @Override
   public void write(int b) throws IOException {
       raf.write(b);
   }

   @Override
   public void write(byte b[]) throws IOException {
       raf.write(b);
   }

   @Override
   public void write(byte b[], int off, int len) throws IOException {
       raf.write(b, off, len);
   }

   public void seek(long pos) throws IOException {
       raf.seek(pos);
   }

   public long length() throws IOException {
       return raf.length();
   }

   @Override
   public void close() throws IOException {
       raf.close();
   }

}

接下來,就可以開心的把 RandomAccessFile 當 OutputStream 用了。

// 將 BAOS 中的數據寫入 MyRandomAccessFileOutputStream
   private static void writeToMyRaf() throws IOException {
       if(file.exists())
           file.delete();
       RandomAccessFile raf = new RandomAccessFile(file, "rw");
       MyRandomAccessFileOutputStream myraf = new MyRandomAccessFileOutputStream(raf);

       long time = System.currentTimeMillis();
       out.writeTo(myraf);
       myraf.close();
       time = System.currentTimeMillis() - time;
       System.out.println("將 "+ size + " 個字節寫入 MyRaf 耗時:" + time + "ms");
       file.delete();
   }

Copy寫入FOS

大家記不記得 BAOS 還有個 toByteArray() 方法可以將其中的內容返回一個 byte 數組。其實現調用了 Arrays.copyOf() 方法,這里記做 copy 。

然后回想,其實各種流都有一個 write(byte[]) 方法,所以你們知道我想干嘛了嗎,嗯,很粗暴的實現方式,上代碼。

// 將 BAOS 中的數據 copy 寫入 FileOutputStream
   private static void copyToFOS() throws IOException {
       if(file.exists())
           file.delete();
       // 將 ByteArrayOutputStream 緩存的數據寫入 FileOutputStream 中,即寫入文件中
       FileOutputStream fileOutputStream = new FileOutputStream(file, false);

       long time = System.currentTimeMillis();
       fileOutputStream.write(out.toByteArray());
       fileOutputStream.close();
       time = System.currentTimeMillis() - time;
       System.out.println("將 "+ size + " 個字節 copy 寫入 FOS 耗時:" + time + "ms");
       file.delete();
   }

Copy寫入RAF

同樣的,RandomAccessFile 也有 write(byte[]) 方法,所以。。。繼續上代碼:

 

// 將 BAOS 中的數據 copy 寫入 RandomAccessFile
   private static void copyToRaf() throws IOException {
       if(file.exists())
           file.delete();
       RandomAccessFile raf = new RandomAccessFile(file, "rw");

       long time = System.currentTimeMillis();
       raf.write(out.toByteArray());
       raf.close();
       time = System.currentTimeMillis() - time;
       System.out.println("將 "+ size + " 個字節 copy 寫入 Raf 耗時:" + time + "ms");
       file.delete();
   }

接下來我們比較一下這四種方式的速度:

實驗對比

寫 800M數據。將 RAF 包裝成 OutputStream 和 FileOutputStream 的效率差不多。對于兩種文件流的寫入方法,writeTo 總是比 copy 寫入要快。畢竟 copy 多了一步拷貝,而且會占用額外內存。

所以不管哪種文件流,用 BAOS 的 writeTo() 都是最好的。

將 838860800 個字節寫入 FOS 耗時:1413ms
將 838860800 個字節 copy 寫入 FOS 耗時:2092ms
將 838860800 個字節寫入 MyRaf 耗時:1452ms
將 838860800 個字節 copy 寫入 Raf 耗時:2203ms

“java如何將內存數組流的數據寫入文件流中”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

永和县| 营山县| 凭祥市| 商南县| 托克逊县| 信阳市| 青州市| 潼南县| 米脂县| 农安县| 乌鲁木齐市| 广宁县| 东光县| 桐梓县| 阳信县| 南康市| 靖宇县| 罗平县| 大竹县| 嵊州市| 鲜城| 曲松县| 益阳市| 阿克苏市| 永州市| 浮山县| 汝阳县| 民和| 年辖:市辖区| 丹凤县| 台中县| 乌兰浩特市| 婺源县| 高州市| 安远县| 郯城县| 濮阳市| 甘南县| 永靖县| 隆德县| 辉县市|