怎么通过WebService接收base64的值并转换为文件后存放
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么通过WebService接收base64的值并转换为文件后存放相关的知识,希望对你有一定的参考价值。
参考技术A 1、参考http://pointonline.iteye.com/blog/736356byte[] d ; // d中存放需要传递的数据
String data = new String(Base64.encode(d));
SoapObject request= new SoapObject(nameSpace, function);
request.addProperty(str,new SoapPrimitive(SoapEnvelope.ENC,"base64Binary",data));
2、我自己开发的项目中,直接传递的,也成功了
ByteArrayOutputStream baos; // baos中存放需要传递的数据
// 进行Base64编码
String uploadBuffer = new String(Base64.encode(baos.toByteArray()));
SoapObject request= new SoapObject(nameSpace, function);
request.addProperty(str,uploadBuffer );
以上是关于怎么通过WebService接收base64的值并转换为文件后存放的主要内容,如果未能解决你的问题,请参考以下文章