如何将一串数据拆分到不同的列表视图中?

发布于 2024-12-08 10:37:17 字数 202 浏览 0 评论 0原文

我是否能够分割以 开头的数据字符串,其中包含多个不同的对象,例如以 结尾的 ; 然后以 结束。将其拆分为多个列表视图,每个计划都在不同的列表视图中?很难解释,所以我错过的任何事情都可以说......

Would I be able to split a string of data starting with <NewData> with several different objects inside such as <Schedule> ending in </Schedule> and then ending over all with a </NewData>. Split that into several list views each schedule in a different list view? quite difficult to explain so any thing I've missed just say...

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

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

发布评论

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

评论(1

半城柳色半声笛 2024-12-15 10:37:17

嗯,我只会给你一个提示,

 String stuff = "<Schedule> save kittens </Schedule> " +
                             "<Schedule> and puppies </Schedule>" ;

 String [] result = stuff.split("<Schedule>");
 for(int i = 0; i < result.length; i++)
 {
          if(result[i].length() > 0)
            Log.d("TODO", " - " + result[i].substring(0, result[i].indexOf("<")));
 }

Umm I'll only give you a hint,

 String stuff = "<Schedule> save kittens </Schedule> " +
                             "<Schedule> and puppies </Schedule>" ;

 String [] result = stuff.split("<Schedule>");
 for(int i = 0; i < result.length; i++)
 {
          if(result[i].length() > 0)
            Log.d("TODO", " - " + result[i].substring(0, result[i].indexOf("<")));
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文