编码/解码Base64失败

时间:2018-02-14 15:27:41

标签: java android utf-8 base64

在我的应用程序客户端 - 服务器中,在客户端,我按以下格式发送文件内容:

public static String getImageFromURI (Context contesto, Uri uri) {
    InputStream is;
    ByteArrayOutputStream bos;
    try {
        is = contesto.getContentResolver().openInputStream(uri);
        bos = new ByteArrayOutputStream();

        byte[] buf = new byte[1024];
        try {
            for (int readNum; (readNum = is.read(buf)) != -1;) {
                bos.write(buf, 0, readNum); //no doubt here is 0
            }
        } catch (IOException ex) {
            Log.d("TAG_F2S", "Sono nel catch IOExcetion con emssage = " + ex.getMessage());
            ex.printStackTrace();
            return null;
        }

        return new String (Base64.encode(bos.toByteArray(), Base64.DEFAULT), "UTF-8");
    } catch (FileNotFoundException fnfe) {
        Log.d("TAG_F2S", "Sono nel catch FileNotFoundExcetion con emssage = " + fnfe.getMessage());
        fnfe.printStackTrace();

        return null;
    } catch (UnsupportedEncodingException uee) {
        Log.d("TAG_F2S", "Sono nel catch UnsupportedEncodingExcetion con emssage = " + uee.getMessage());
        uee.printStackTrace();

        return null;
    }
}

在服务器端我尝试按如下方式创建文件:

byte [] byteFile = java.util.Base64.getDecoder ().decode(contenuto.getBytes("UTF-8"));

Files.write(Paths.get(myPath), byteFile);

但是我无法获得结果导致这样的异常:

java.lang.IllegalArgumentException: Illegal base64 character a
at java.util.Base64$Decoder.decode0(Unknown Source)
at java.util.Base64$Decoder.decode(Unknown Source)
....

我的错误是什么?我不明白.. 谢谢你的帮助。

编辑: 我发送给服务器的字符串如下: https://codeshare.io/GqQWNA

1 个答案:

答案 0 :(得分:0)

我发现了问题:

当我对文件内容进行编码并且我在POST请求中将数据发送到服务器时,内容被修改,仅替换alland' +'带有'的字符' (空格)。 在服务器端执行以下操作:

java.util.Base64.getMimeDecoder().decode(contenuto.replace(" ", "+"));

我没有问题。请注意,我使用 getMimeDecoder而不是getDecoder ,否则它不起作用。

有谁知道这个问题的原因?