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.
我需要将图像从我的 android 应用程序上传到 php 服务器。我正在使用多部分实体发送图像。如果我通过使用base 64编码上传图像会提高性能。任何想法请帮忙?
与任何性能问题一样,经验测量为王。
作为一个有根据的猜测,我预测 base64 编码的上传与二进制传输相比要多花费大约 33% 的时间,因为 base64 编码消息中的每个字节仅携带 6 位有效负载。