如何制作适当的 HttpPost 从网站获取一些数据?
我正在构建一个应用程序,需要从网站获取一些 JSON 格式的数据,解析并使用它。
我设法让它在我的家用计算机(WAMP)上运行,但无法在实际网站上执行相同的操作。
该网站是www.ace.ucv.ro/android/android.php
。
这就是我所做的:
HttpPost httpPost = new HttpPost("http://ace.ucv.ro/android/android.php");
它不会返回任何东西。请帮帮我,告诉我需要在那里输入什么...是服务器IP还是什么?
I'm building an app that requires getting some JSON formatted data from a website, parsing and using it.
I managed to get it working on my home machine (WAMP), but am unable to do the same with the actual website.
The website is www.ace.ucv.ro/android/android.php
.
This is what I do:
HttpPost httpPost = new HttpPost("http://ace.ucv.ro/android/android.php");
And it doesn't return anything. Please help me out and tell me what I need to put in there... Is it the server IP or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个关于如何使用 HttpGet 的有效示例:
我通常会将其变得更加紧凑,如下所示:
确保在清单中声明正确的互联网访问权限:
Here is a valid example on how to use
HttpGet
:I usually would make it even more compact into something like this:
Make sure to declare the correct permission for internet access in your manifest :
如果您需要获取数据,请尝试
HttpGet
。If you need to Get data, try
HttpGet
.