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 GET 成功地将一个字符串从 android 发送到 .NET,我在 .NET 端使用 WCF,我的真正意图是将图像从 android mobile 发送到 .NET 服务器,我可以为此使用 GET,即,将图像转换为 base64 字符串,然后将图像发送到 .NET,就像我为字符串所做的那样?如果不是,为什么不可能?
GET 会将图像的 Base64 编码字符串表示附加到 URL。URL 有长度限制,因此可能无法传输整个字符串。更好的方法是使用带有 JSON 数据的 POST 来保存 Base64 编码的图像字符串。