Android Ksoap 调用webservice 获取二进制数据 byte[] 方法

由于Ksoap 调用远程方法返回的结果是 String

即便远程服务器返回方法是 byte[] 数据,

       但是经过 ksoap 返回的是仍String,如果我们将返回的 String 直接转换为 byte[]后发现结果是不正确的 或者无法强制转换。

我们只需要简单的2步就可以进行结果的 正确强制转换:

1.远程调用前对 envelope 对象进行MarshalBase64 注册

     2.获取结果后 对结果进行Base64解码编码


代码如下:

private static byte[] serviceBinRCP(SoapObject soapObject,String action) {
        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
        envelope.setOutputSoapObject(soapObject);
        new MarshalBase64().register(envelope);//1.远程调用前对 envelope 对象进行MarshalBase64 注册
        HttpTransportSE se = new HttpTransportSE(url);
        Object result = null;
        byte []image = null;
        try {
            se.call(action,envelope);
            result = envelope.getResponse();
            if (result != null) {
                image = Base64.decode(result.toString());//2.获取结果后 对结果进行Base64解码编码
            }
        } catch (Exception e) {
            return null;//todo throw yourException
        }
        return image;
    }


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值