【问题标题】:Sending image from android to java Server which is running Restful webservice?将图像从android发送到运行Restful webservice的java服务器?
【发布时间】:2012-03-14 06:43:58
【问题描述】:

图像从 Android 发送到 Java 服务器的最佳方式是什么
我的服务器正在运行 Restful Web 服务,我想将图像从 Android 发送到我的服务器。

我应该将其转换为 JSON、XML 还是有更好的方法?

我真的想快速发送图片
如果您有任何示例代码,请分享

【问题讨论】:

  • 将图像转换为字节数组,然后使用返回字符串的 Base64 对字节数组进行编码,然后您可以将图像作为字符串发送,这是一种将图像作为字符串发送的快速方法
  • 感谢@prasad.gai 的回答:你能告诉我如何将此字符串转换为服务器端的图像吗?

标签: android xml json image rest


【解决方案1】:
[i]/**
     * Decodes a byte array from Base64 format.
     * 
     * @param s
     *            a Base64 String to be decoded.
     * @return An array containing the decoded data bytes.
     * @throws IllegalArgumentException
     *             if the input is not valid Base64 encoded data.
     */
    public static byte[] decode(String s)
    {
        return decode(s.toCharArray());
    }

    /**
     * Decodes a byte array from Base64 format. No blanks or line breaks are
     * allowed within the Base64 encoded data.
     * 
     * @param in
     *            a character array containing the Base64 encoded data.
     * @return An array containing the decoded data bytes.
     * @throws IllegalArgumentException
     *             if the input is not valid Base64 encoded data.
     */
    public static byte[] decode(char[] in)
    {
        int iLen = in.length;
        if (iLen % 4 != 0)
            throw new IllegalArgumentException(
            "Length of Base64 encoded input string is not a multiple of 4.");
        while (iLen > 0 && in[iLen - 1] == '=')
            iLen--;
        int oLen = (iLen * 3) / 4;
        byte[] out = new byte[oLen];
        int ip = 0;
        int op = 0;
        while (ip < iLen)
        {
            int i0 = in[ip++];
            int i1 = in[ip++];
            int i2 = ip < iLen ? in[ip++] : 'A';
            int i3 = ip < iLen ? in[ip++] : 'A';
            if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127)
                throw new IllegalArgumentException(
                "Illegal character in Base64 encoded data.");
            int b0 = map2[i0];
            int b1 = map2[i1];
            int b2 = map2[i2];
            int b3 = map2[i3];
            if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)
                throw new IllegalArgumentException(
                "Illegal character in Base64 encoded data.");
            int o0 = (b0 << 2) | (b1 >>> 4);
            int o1 = ((b1 & 0xf) << 4) | (b2 >>> 2);
            int o2 = ((b2 & 3) << 6) | b3;
            out[op++] = (byte) o0;
            if (op < oLen)
                out[op++] = (byte) o1;
            if (op < oLen)
                out[op++] = (byte) o2;
        }
        return out;
    }[/i]

感谢这篇帖子:http://www.coderanch.com/t/482256/java/java/Converting-Base-encoded-String-Image

【讨论】:

  • 上述sn-p中的map2数组是什么?它没有在任何地方定义
猜你喜欢
  • 2015-10-23
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多