Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将图像作为 base64 发送到基于 php 的 Web 服务。我发送的图像大约 500 kb 。我首先压缩图像,然后将图像转换为 base64 字符串。但是图像没有被发送。如果我通过 Fiddler 尝试,我可以成功发送图像。反正有没有增加android的http post请求调用?我正在使用以下库:DefaultHttpClient 和 HttpPost。
就我而言,添加 UTF-8 解决了我的问题
StringEntity se; se = new StringEntity(json.toString(),"UTF-8"); httppostreq.setEntity(se); response = client.execute(httppostreq);