Java ByteArrayOutputStreamwrite(int n) 与 ByteArrayOutputStreamwrite(byte[] b, int off, int len) 的区别
wufei123 2025-01-26 阅读:1 评论:0本例演示了如何使用java从网络url下载图像数据,并比较了两种不同的write()方法的结果。我们将尝试通过互联网下载图片,并将其保存到本地文件。
方法一:write(byte[] b, int off, int len)
这段代码使用write(byte[] b, int off, int len)方法将缓冲区中的数据写入输出流。
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); } out.close(); in.close(); byte[] response = out.toByteArray(); FileOutputStream fos = new FileOutputStream("d:/my-image1.jpg"); fos.write(response); fos.close();
方法二:write(int n)
这段代码使用write(int n)方法,每次写入一个字节。
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())) { out.write(n); } out.close(); in.close(); byte[] response = out.toByteArray(); FileOutputStream fos = new FileOutputStream("D:/my-image2.jpg"); fos.write(response); fos.close();
结果对比
两种方法都成功下载了图片,但生成的my-image1.jpg和my-image2.jpg文件属性存在差异。
观察两个文件的属性,可以发现尺寸存在差异。
这说明write(byte[] b, int off, int len)方法效率更高,因为它一次写入多个字节,而write(int n)方法每次只写入一个字节,效率较低,可能导致文件损坏或大小不一致。 建议使用write(byte[] b, int off, int len)方法进行二进制数据的写入。
以上就是Java ByteArrayOutputStreamwrite(int n) 与 ByteArrayOutputStreamwrite(byte[] b, int off, int len) 的区别的详细内容,更多请关注知识资源分享宝库其它相关文章!
版权声明
本站内容来源于互联网搬运,
仅限用于小范围内传播学习,请在下载后24小时内删除,
如果有侵权内容、不妥之处,请第一时间联系我们删除。敬请谅解!
E-mail:dpw1001@163.com
发表评论