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.
如何让应用程序用户从他们的相册中选择一张图片,以及如何将图片上传到我的网络服务器?我知道如何使用电话任务。我只需要知道如何将照片上传到我的网络服务器。网上有教程吗?
这取决于您拥有的 Web 服务器以及它使用的技术。如果您的服务器是 RESTful,您需要使用 HttpWebRequest 或 HttpClient 和 POST 方法,将图像编码为 base64 字符串将其添加到 json 或 xml 对象,将其放入请求正文并发送到服务器。您提出的问题没有任何详细信息,因此我无法为您提供代码帮助。
将图像转换为 base64 并将 base64 字符串发布到您的网页应该可以。