如何在android中的字符串中存储迭代器值

发布于 2024-11-08 04:45:59 字数 425 浏览 1 评论 0原文

在我的应用程序中,当我单击按钮时,它会点击 URL 并返回 xml 文件。从该 xml 文件中,我使用 dom 解析器和迭代器列出了特定标签。使用以下代码,我列出了 logcat 中的数据。

Iterator<String> itr = arl.listIterator();
            int z=0,x=0,increment=0;
            while (itr.hasNext()) 
            {
                Log.e("ViewImage5-list all  "+z, itr.next());
                z++;
            }

现在,我在 logcat 中获得的所有值我想将这些值存储在数组字符串中。如何储存它。请用代码解释一下......

in my app when i click a button it hits an URL and gets back an xml file. From that xml file i am listing out a particular tag using dom parser and Iterator. Using the following code i am listing out the data's n the logcat.

Iterator<String> itr = arl.listIterator();
            int z=0,x=0,increment=0;
            while (itr.hasNext()) 
            {
                Log.e("ViewImage5-list all  "+z, itr.next());
                z++;
            }

Now the values which are all i am getting in logcat i want to store those values in an Array String. How to store it. Pls explain by code.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

吹泡泡o 2024-11-15 04:45:59

试试这个:

Iterator<String> itr = arl.listIterator();
            int z=0,x=0,increment=0;
            List<String> strings = new ArrayList<String>();
            while (itr.hasNext()) 
            {
                String data = itr.next();
                list.add(data);
                Log.e("ViewImage5-list all  "+z, data);
                z++;
            }
            // the list "strings" now holds all your strings

try this:

Iterator<String> itr = arl.listIterator();
            int z=0,x=0,increment=0;
            List<String> strings = new ArrayList<String>();
            while (itr.hasNext()) 
            {
                String data = itr.next();
                list.add(data);
                Log.e("ViewImage5-list all  "+z, data);
                z++;
            }
            // the list "strings" now holds all your strings
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文