此範例示範使用 Java 的 InputStream
和 OutputStream
從 URL 下載映像。 提供了兩個程式碼片段,其不同之處在於 OutputStream.write()
方法的使用。我們來分析一下結果。
方法一:write(byte[] b, int off, int len)
此方法將位元組陣列的一部分寫入輸出流。 該程式碼有效地從輸入流中讀取資料塊(一次 1024 位元組),並將這些相同的資料塊寫入輸出流。這是處理影像等二進位資料的正確且有效的方法。
<code class="language-java">String val = "https://akcdn.detik.net.id/community/media/visual/2023/03/04/sholat-jenazah_169.jpeg"; URL url = new URL(val); InputStream in = new BufferedInputStream(url.openStream()); ByteArrayOutputStream out = new ByteArrayOutputStream(); byte[] buf = new byte[1024]; int n = 0; while (-1 != (n=in.read(buf))) { out.write(buf, 0, n); // Correctly writes the chunk of bytes } out.close(); in.close(); byte[] response = out.toByteArray(); FileOutputStream fos = new FileOutputStream("D:/my-image1.jpg"); fos.write(response); // Writes the complete byte array to the file fos.close();</code>
方法二:write(int n)
此方法將單一位元組寫入輸出流。 代碼錯誤地將in.read(buf)
的回傳值(表示讀取的位元組數)解釋為要寫入的單一位元組。這會導致資料損壞。
<code class="language-java">String val = "https://akcdn.detik.net.id/community/media/visual/2023/03/04/sholat-jenazah_169.jpeg"; URL url = new URL(val); InputStream in = new BufferedInputStream(url.openStream()); ByteArrayOutputStream out = new ByteArrayOutputStream(); int n = 0; while (-1 != (n=in.read(buf))) { out.write(n); // Incorrectly writes only a single byte, corrupting the image data } out.close(); in.close(); byte[] response = out.toByteArray(); FileOutputStream fos = new FileOutputStream("D:/my-image2.jpg"); fos.write(response); fos.close();</code>
結果與影像屬性:
使用方法 1 (my-image1.jpg
) 下載的影像將是正確渲染的影像,具有預期的檔案大小。 方法 2 (my-image2.jpg
) 由於資料損壞,將導致影像損壞或部分渲染,且檔案大小可能較小。 提供的圖像檔案比較從視覺上和檔案大小方面證明了這種差異。
總之,在處理二進位資料流時始終使用 write(byte[] b, int off, int len)
方法,以確保資料完整性並避免損壞。 write(int n)
方法僅適合寫入單一位元組,不適合處理較大的資料區塊。
以上是Java ByteArrayOutputStream.write(int n) 與 ByteArrayOutputStream.write(byte[] b, int off, int len) 的區別的詳細內容。更多資訊請關注PHP中文網其他相關文章!