迭代查询
我想编写一个对象来保存从 xml 读取的数据,
String data = null;
while ((data = stdInput.readLine()) != null) {
logger.info("Data:"+data);
}
我想返回一个 obj 来保存在 while 循环中读取的完整数据,我该怎么做? 它的爪哇
I want to written a object holding data read from xml
String data = null;
while ((data = stdInput.readLine()) != null) {
logger.info("Data:"+data);
}
i want to return a obj holding the complete data read in while loop,how would i do that?
its java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 StringBuffer 来组合所有行,然后在循环完成时输出到 String:
You can use a StringBuffer to combine all the lines, then output to a String when your loop is done:
Google 搜索“DOM XML 解析器”加上您的编程语言的名称。也许添加“教程”。
Google for "DOM XML parser" plus the name of your programming language. Maybe add "tutorial".