安卓、servlet
我正在编写一个android应用程序,它将一些基于xml的数据发送到struts2
在struts中我检索数据并将其存储在数据库中。
但是我怎样才能在struts中将相同的数据发送到android。给出一些代码细节和
解释。
谢谢。
I am writing an android application, which is sending some xml based data to struts2
In struts i retrieve the data and store it in a database.
But how can i send the same data to android in struts. give some code details with
explanation.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,考虑到您尝试发送到手机的 XML 并不是对其请求之一的立即答复,您基本上可以采用两条路线:
http://code.google.com/android/c2dm/index.html
或
http://oreilly.com/catalog/9780596007218
不幸的是,它们都太复杂,无法用一些示例代码来涵盖。
Well, considering that the XML you're trying to send to the phone isn't an immediate answer to one of its requests, there are basically two routes you can go:
http://code.google.com/android/c2dm/index.html
or
http://oreilly.com/catalog/9780596007218
Unfortunately, both of them are too complex to be covered with a bit of example code.