5MB图片加载耗时8秒,如何优化BufferedInputStream的转换速度?
时间:2024-12-04 15:15:58 334浏览 收藏
今天golang学习网给大家带来了《5MB图片加载耗时8秒,如何优化BufferedInputStream的转换速度?》,其中涉及到的知识点包括等等,无论你是小白还是老手,都适合看一看哦~有好的建议也欢迎大家在评论留言,若是看完有所收获,也希望大家能多多点赞支持呀!一起加油学习~
bufferedinputstream转换速度优化
对于下述代码,当图片大小为5mb时,加载时间耗时8秒。如何提升其加载速度?
url url = new url(imageurl); httpurlconnection connection = (httpurlconnection) url.openconnection(); connection.setrequestmethod("get"); connection.setconnecttimeout(5000); bufferedinputstream bis = new bufferedinputstream(connection.getinputstream()); bytearrayoutputstream baos = new bytearrayoutputstream(); byte[] buffer = new byte[1024]; int len; while ((len = bis.read(buffer)) != -1) { baos.write(buffer, 0, len); } outputstream outputstream = response.getoutputstream(); response.setcontenttype("image/jpg"); outputstream.write(baos.tobytearray()); outputstream.flush(); outputstream.close();
优化方案
该代码存在以下优化点:
- 内存占用高:读取数据后全部存放在内存中,当文件较大时会造成内存溢出。
- 阻塞读取:阻塞读取数据后才执行写入,造成资源浪费。
- 连接未复用:未复用http连接,增加开销。
- 资源未释放:未释放http连接和response流,造成内存泄露。
优化方案一:原始流复制
优化原始流复制,通过增大缓冲区,提高效率:
httpurlconnection connection = null; try { url url = new url(imageurl); connection = (httpurlconnection) url.openconnection(); connection.setrequestmethod("get"); connection.setconnecttimeout(5000); try (inputstream bis = new bufferedinputstream(connection.getinputstream()); outputstream out = response.getoutputstream()) { response.setcontenttype("image/jpg"); // buffer 越大,效率越快 byte[] buffer = new byte[1024]; int len; while ((len = bis.read(buffer)) != -1) { out.write(buffer, 0, len); out.flush(); } } } catch (exception e) { throw new runtimeexception(e); } finally { if(null != connection){ connection.disconnect(); } }
优化方案二:使用复制工具
使用第三方库提供的方法复制流,减少代码复杂度:
httpurlconnection connection = null; try { url url = new url(imageurl); connection = (httpurlconnection) url.openconnection(); connection.setrequestmethod("get"); connection.setconnecttimeout(5000); try (inputstream bis = new bufferedinputstream(connection.getinputstream()); outputstream out = response.getoutputstream()) { response.setcontenttype("image/jpg"); ioutil.copy(bis, out); } } catch (exception e) { throw new runtimeexception(e); } finally { if(null != connection){ connection.disconnect(); } }
优化方案三:使用nio非阻塞传输
使用nio非阻塞传输,减少系统开销,提升效率:
HttpURLConnection connection = null; try { URL url = new URL(imageUrl); connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.setConnectTimeout(5000); try (ReadableByteChannel in = Channels.newChannel(new BufferedInputStream(connection.getInputStream())); WritableByteChannel out = Channels.newChannel(response.getOutputStream())) { response.setContentType("image/jpg"); ByteBuffer byteBuffer = ByteBuffer.allocate(8192); while (in.read(byteBuffer) != -1) { // 写转读 byteBuffer.flip(); out.write(byteBuffer); byteBuffer.clear(); } } } catch (Exception e) { throw new RuntimeException(e); } finally { if (null != connection) { connection.disconnect(); } }
本篇关于《5MB图片加载耗时8秒,如何优化BufferedInputStream的转换速度?》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
217 收藏
-
123 收藏
-
501 收藏
-
471 收藏
-
492 收藏
-
194 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习