我是靠谱客的博主 明理身影,最近开发中收集的这篇文章主要介绍图片流转base64遇到的坑,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Java学习问题2:网络传输的图片转base64遇到的坑

1.之前写图片转base64流的写法

		File file = new File("D:\test\img11.jpg");
        InputStream inputStream = null;
        BufferedOutputStream bos = null;
        FileOutputStream outputStream = null;
        try {
            //读取文件转图片base64流
            inputStream = new  FileInputStream(file);
            //inputStream.available()可以在读写操作前提前得知数据流有多少字节,初始化byte数组
            byte[] image = new byte[inputStream.available()];
            int readBytes = 0;
            inputStream.read(image);
            //将图片转为base64流
            BASE64Encoder encoder = new BASE64Encoder();
            String imageString = encoder.encode(image);


            //将base64流转图片
            File dir = new File("D:\test");
            if(!dir.exists() && dir.isDirectory()){
                dir.mkdir();
            }
            BASE64Decoder decoder = new BASE64Decoder();
            byte[] outByte = decoder.decodeBuffer(imageString);
            File outFile =  new File("D:\test\test1.jpg");
            outputStream = new FileOutputStream(outFile);
            bos = new BufferedOutputStream(outputStream);
            bos.write(outByte);

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (inputStream != null) {
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (bos != null) {
                try {
                    bos.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }
            if (outputStream != null) {
                try {
                    outputStream.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }
        }

但是inputStream.available()在网络传输过程中,很有可能返回的是0,非常不靠谱!基本网上都是这个写法,在本地无论测试多少遍都是ok的。

2.不应该定义数组大小,而是交给缓存数组遍历while来做,修改后的代码如下。

		InputStream in = null;
        String imageString = null;
        byte[] image = null;
        try {
            in = new FileInputStream("F:\xsnasnew\groupvisit\actword\test.jpg");
            ByteArrayOutputStream output = new ByteArrayOutputStream();
            byte[] buffer = new byte[1024];
            int n = 0;
            while (-1 != (n = in.read(buffer))) {
                output.write(buffer, 0, n);
            }
            image = output.toByteArray();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if(in!=null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        if(image != null && image.length > 0){
            BASE64Encoder encoder = new BASE64Encoder();
            imageString = encoder.encode(image);
        }

最后

以上就是明理身影为你收集整理的图片流转base64遇到的坑的全部内容,希望文章能够帮你解决图片流转base64遇到的坑所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(89)

评论列表共有 0 条评论

立即
投稿
返回
顶部