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.
我想通过 HTTP / POST 将位图上传到 php 服务器。我看到了一些解决方案,它们使用 base64 编码来发布图像,但在我看来,这种方法似乎有点不一致。有没有更好的上传图片的方法?
最好的问候,卢卡斯
在您的帖子中使用FileEntity。
如果您使用的是位图类,则将值更改为 100
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
否则放置您的代码。
希望这项工作。