json传输文件中的BASE64加密问题

时间:2025-03-28 12:57:35

1、用json传输图片一些注意事项

 json是一种轻量级的数据结构,我们知道json是以字符串形式存储数据的。如果我们想要通过json传送文件或者图片的话,必然涉及到要将图片或文件读取为字节并转为json放入字符串中,但是这其中存在一个问题java的字符都是由Unicode编码的,可以转换为2个字节的数据,这两个字节的值可能不在ASCII码中。而大多计算机都是用ASCII存储数据,比如在网络传输中如果遇到只能处理ascii字符的那么不能显示的字符将被错误处理。
 所以我们需要将要传输的图片字符串进行一定的处理,这种处理就是将不能显示的字符加密成能显示的字符,比如像BASE64加密,将传输的字符串加密成64个可显示字符。64个字符最多需要6位。那么每6个bit插入0xxxxxx0字节中,这样加密后原来的8n个bit现在要加密成8n/6个字节了,整体会增大1/3大小。这种方式虽说加密,但是可以轻松解密的。如果面对非二进制文件还可以用java的GZIP进行压缩然后加密。

2、上代码,不解释了

测试服务端

import ;
import ;
import ;
import ;

import ;
import ;
import ;
import ;
import ;

import .Base64;

/**
 * @author Lenvov
 *
 */
 @WebServlet(name="downloadservlet", urlPatterns={"/download"})
public class DownLoadServlet extends HttpServlet{

    /**
     * 
     */
    private static final long serialVersionUID = 1L;

    /* (non-Javadoc)
     * @see #doGet(, )
     */
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doPost(req, resp);
    }

    /* (non-Javadoc)
     * @see #doPost(, )
     */
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        InputStream is = ().getResourceAsStream("img/");

        //InputStream is = new FileInputStream("img/");
        BufferedInputStream bis = new BufferedInputStream(is,1024);
        int len = 0;
        byte[] buf = new byte[1024];

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        while((len = (buf))!=-1){
            (buf, 0, len);
        }
        ();
        ();

        //将图片写入json中
        String data = (());
        String json = "{'img': '"+data+"'}";
        (json);
        ().write(());

    }
}

测试客户端

import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;

import ;
import ;
import ;
import .Base64;


/**
 * @author Lenvov
 *
 */
public class DownClient {


    public static void main(String[] args) {
        URL url = null;
        HttpURLConnection conn = null;
        InputStream is = null;
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        try {
            url = new URL("http://localhost/WebTest/download");
            conn = (HttpURLConnection) ();
            (false);
            ();
            is = ();

            int len = 0;
            byte[] buf = new byte[1024];

            while((len = (buf))!=-1){
                (buf, 0, len);
            }
        } catch (MalformedURLException e) {
            ();
        } catch (IOException e) {
            ();
        }finally {
            try {
                ();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                ();
            }
            ();
        }
        String jsonstr = new String(());
        ("----"+jsonstr);
        File f = new File("");
        JsonObject jsono = new JsonParser().parse(jsonstr).getAsJsonObject();

        String imgdata = ("img").getAsString();

        byte[] bdata = (imgdata);

        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(f);

            (bdata);

        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            ();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            ();
        }finally {
            try {
                ();
            } catch (IOException e) {
                // TODO Auto-generated catch block