当我在文件中写入 Base64 编码图像时,谁在添加“\n”?爪哇岛

2022-09-02 23:32:09

我在做什么

我需要通过HTTPS请求发送一个JsonArray,其中包含Base64编码字符串中的一些数据和图像。如果数据存储在内存中,这很有效。

现在,我需要避免加载内存中的所有数据,并且我正在Android设备中创建一个临时文件,其中包含我需要发送的所有数据。为了创建文件,我在他里面写了很多JsonObjects。其中一些 JsonObjects 具有表示图像的字段。当我检测到一个时,我得到图像路径,并使用Base64将其编码为字符串。

更新:

首先,我初始化文件,我得到缓冲的Writer。

            File f = new File(privateSincronizePath+File.separator+"upload_"+timefile+".json");
            f.createNewFile();
            FileWriter fw = new FileWriter(f.getAbsoluteFile(), true);
            BufferedWriter bw = new BufferedWriter(fw);

下面是在存在时创建映像的代码:

            JSONObject jobInf = new JSONObject();
            jobInf.put("xx", "INSERT");
            jobInf.put("xx", c.getString(c.getColumnIndex("xx")));
            jobInf.put("xx", ""+c.getInt(c.getColumnIndex("xx")));
            jobInf.put("xx", c.getString(c.getColumnIndex("xx")));

            JSONObject jsonObject = new JSONObject(docu.filtre(dades, docu.getXx()));
            Iterator<?> keys = jsonObject.keys();
            boolean updated = false;
            while(keys.hasNext() && !updated){
                String key = (String)keys.next();
                if (key != null && key.equals("path") && key.length() > 0){
                    jsonObject.put(key, getBase64EncodeFromImage(jsonObject.getString(key)));
                    updated = true;
                }
            }

            jobInf.put("object", jsonObject);

            escriure(bw, ","+jobInf.toString());

Method escriure():

更新:每次完成 JsonObject 的创建时都会调用此方法。仅将 JsonObject 作为字符串附加到文件中。

    private void escriure(BufferedWriter bw, String s) throws IOException {
        uploadLength += s.length();
        bw.append(s);
    }

最后,当创建文件时,我正在读取它,并使用 OutputStream 将数据作为 Post 参数发送到服务器:

        this.Https_url = new URL(url+"/sync.php?");
        HttpsURLConnection con = (HttpsURLConnection) Https_url.openConnection();
        con.setReadTimeout(60000);
        con.setConnectTimeout(60000);
        con.setRequestMethod("POST");
        con.setDoInput(true);
        con.setDoOutput(true);
        con.setFixedLengthStreamingMode(uploadLength);

        OutputStream os = con.getOutputStream();
        InputStream inp = new FileInputStream(new File(privateSincronizePath+File.separator+"upload_"+timefile+".json"));
        byte[] buffer = new byte[1024];

        int len;
        while ((len = inp.read(buffer)) != -1) {
            os.write(buffer, 0, len);
        }
        inp.close();
        os.close();         

        // Establim la connexió:
        con.connect();

问题出在哪里

问题很简单。当我在服务器中打开图像时,文件已损坏,不显示图像。

我注意到了什么

如果我捕获了图像Base64字符串编码,然后写入文件,并将其上传到服务器中,则图像是OK的!然后,在写入文件后,图像似乎已损坏。

经过调查,我注意到Base64编码的字符串被写入文件后,它有很多“\n”每x个字符。如果我删除所有这些“\n”或隔断线,服务器可以正确打开图像。

问题

谁在放置这个隔断线?如何将Base64编码为字符串“按原样”编写?提前感谢您的帮助!

答案

正如Schoenobates所回答的那样,解决方案是使用标志NO_WRAP。为了添加更多信息,我们在服务器端放置此函数以读取带有标志的编码的 Base64 字符串URL_SAFE

tom php.net 中获得的函数为:

<?php
    function base64url_decode($base64url)
    {
        $base64 = strtr($base64url, '-_', '+/');
        $plainText = base64_decode($base64);
        return ($plainText);
    }
    ?>

感谢StackOverflow,Axel和Schoenobates的时间!


答案 1

这将是Android Base64类 - 您需要设置标志以删除换行符:

byte[] image = ...; Base64.encodeToString(image, Base64.NO_WRAP | Base64.URL_SAFE);


答案 2

推荐