从 URL 获取内容/字符串
我正在为我的网站开发一个 Android 应用程序。在网站上,您可以创建用户并用他们登录。
现在我想在应用程序上使用这个。登录功能有问题。
我已经拿到了所有表格(用户名和密码)。 现在我想连接到我的网络服务器上的自定义地址,例如: http://domain .com/login.php?username=MyUserName&password=MyPassWord
如果登录正确,该页面将返回“1”,否则返回“0”。 我希望我的应用程序连接到这个地址,然后获取我的网络服务器留下的内容/结果。
请帮助我,我已经坐了几个小时试图把它做好。
I'm developing an android-app for my website. On the website you can create users and login with them.
Now i want this on the App to. The login function is the problem.
I've got all the forms (Username & Password).
Now I want to connect to an custom adress on my webserver ex: http://domain.com/login.php?username=MyUserName&password=MyPassWord
This page will return "1" if the login was correct, and "0" if not.
And I want my app to connect to this adress and then get the content/result my webserver leaves.
Please help my, I've been sitting HOURS tryin to get it right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您正在寻找的是
BasicHttpContext< /code>
和
DefaultHttpClient
:还没有测试过代码,但我认为它应该能解决问题。
另请记住,您的应用程序必须具有适当的
INTERNET
清单文件中的权限以允许 Internet 访问。I believe what you're looking for is the
BasicHttpContext
and theDefaultHttpClient
:Haven't tested the code, but I think it should to the trick.
Also remember that you app must have the appropriate
INTERNET
permission in your manifest file to allow Internet access.