迭代查询

发布于 2024-08-15 05:35:33 字数 231 浏览 2 评论 0原文

我想编写一个对象来保存从 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 技术交流群。

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

发布评论

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

评论(2

眸中客 2024-08-22 05:35:33

您可以使用 StringBuffer 来组合所有行,然后在循环完成时输出到 String:

String data = null;
StringBuffer dataBuffer = new StringBuffer();
while ((data = stdInput.readLine()) != null) {
    logger.info("Data:"+data);
    dataBuffer.append(data).append("\n");
}
String completeData = dataBuffer.toString();

You can use a StringBuffer to combine all the lines, then output to a String when your loop is done:

String data = null;
StringBuffer dataBuffer = new StringBuffer();
while ((data = stdInput.readLine()) != null) {
    logger.info("Data:"+data);
    dataBuffer.append(data).append("\n");
}
String completeData = dataBuffer.toString();
清风疏影 2024-08-22 05:35:33

Google 搜索“DOM XML 解析器”加上您的编程语言的名称。也许添加“教程”。

Google for "DOM XML parser" plus the name of your programming language. Maybe add "tutorial".

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