如何从 Android 设备将数据存储到我的服务器?
我在android中编写了一个简单的应用程序。它有一些编辑文本框并收集输入。我想将文本框的内容存储在我的服务器上。将信息发送到服务器的最佳方式是什么?
I have written a simple application in android. It has some edit text boxes and collects input. I want to store the contents of the text boxes on my server. What's the best way to send the information to the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果是 HTTP 服务器,请使用 POST 请求。
这应该很有用: HttpPost 参考
和代码片段
If it's an HTTP server, use a POST request.
This should be useful: HttpPost reference
and a code snippet.