android:考虑xml值

发布于 2024-12-15 13:47:15 字数 104 浏览 0 评论 0原文

我正在制作一个应用程序,其中我必须将 xml 发送到服务器以验证用户和密码,作为回报,我得到响应,如果用户名和密码正确,则确定,否则无效。现在我的问题是如何从 xml 中获取值和登录到下一个屏幕

I am making an app in which i have to send xml to server to validate the user and password and in return i am getting response , if username and password is correct then OK else INVALID .Now my question is how to take value from xml and login to next screen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

那支青花 2024-12-22 13:47:15

您可以在您的意图中使用 Extra,如下所示:

Intent intent = new Intent(getApplicationContext(), AnotherActivity.class);
intent.putExtra("some_key", "My interesting string");

然后在其他活动中您可以像这样检索它:

getIntent().getStringExtra("some_key");

You can use an Extra in your intent like this:

Intent intent = new Intent(getApplicationContext(), AnotherActivity.class);
intent.putExtra("some_key", "My interesting string");

Then in the other activity you can retrieve it like this:

getIntent().getStringExtra("some_key");
递刀给你 2024-12-22 13:47:15

使用 SAXParserDomParser

如果 XML 很小,则直接从字符串响应中解析它。

Use SAXParser or DomParser .

if XML is Small , parse it directly from string response .

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