如何在android中打印XML文件中的内容
您好,我正在尝试使用 SAXparser 解析 xml 文件。我按照以下链接中给出的示例进行操作:
http://stackoverflow.com/questions/5488185/how-to-store-an-xml-tag-as-an-array-in-java
现在我想知道如何在我的设备中打印输出。我希望在文本视图中打印输出。
hi i am trying to parse an xml file using SAXparser. I followed the example given in the following link,
http://stackoverflow.com/questions/5488185/how-to-store-an-xml-tag-as-an-array-in-java
now i want to know how to print the output in my device. i want the output to be printed in a text view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在您的应用程序中使用 TextView。查看在 android 中使用 TextView 的基本教程。访问此 链接。
另请参阅此链接以查看 TextView 和 TextView 的 XML 属性。用于以编程方式处理它的方法。请访问此链接。要设置值TextView 使用 setText() 方法。
Try using TextView in your application.Check out the basic tutorial to use TextView in android.Visit this link.
Also see this link to see attributes of XML for TextView & methods used to handle it programmatically.Visit this link.To set the value of TextView use setText() method.