从 URL 获取内容/字符串

发布于 2024-10-04 21:26:40 字数 414 浏览 1 评论 0原文

我正在为我的网站开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-10-11 21:26:40

我相信您正在寻找的是 BasicHttpContext< /code>DefaultHttpClient

HttpContext httpContext = new BasicHttpContext();
HttpClient httpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet("http://domain.com/login.php?username=MyUserName&password=MyPassWord");
HttpResponse response = httpClient.execute(httpGet, httpContext);

还没有测试过代码,但我认为它应该能解决问题。

另请记住,您的应用程序必须具有适当的 INTERNET 清单文件中的权限以允许 Internet 访问。

I believe what you're looking for is the BasicHttpContext and the DefaultHttpClient:

HttpContext httpContext = new BasicHttpContext();
HttpClient httpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet("http://domain.com/login.php?username=MyUserName&password=MyPassWord");
HttpResponse response = httpClient.execute(httpGet, httpContext);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文