android:考虑xml值
我正在制作一个应用程序,其中我必须将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在您的意图中使用
Extra
,如下所示:然后在其他活动中您可以像这样检索它:
You can use an
Extra
in your intent like this:Then in the other activity you can retrieve it like this:
使用 SAXParser 或 DomParser 。
如果 XML 很小,则直接从字符串响应中解析它。
Use SAXParser or DomParser .
if XML is Small , parse it directly from string response .