gpt4 book ai didi

android - 如何从元素中获取数据

转载 作者:行者123 更新时间:2023-11-30 04:09:38 26 4
gpt4 key购买 nike

我有这个代码:

Serializable newList;
newList=extras.getSerializable("list");
Iterator<Element> itr =( (List<Element>) newList).iterator();
Element froga=null;
while (itr.hasNext()) {
Object element = itr.next();
Log.i("***Selected Tab", "Im currently in tab with index::" + element);
}

列表是这样的:HashMap < String, String >

并正在输出:

Im currently in tab with index::{L=blablabla, T=blablaba}

如何选择 L?我可以选择带有索引之类的特定元素吗?

非常感谢!

最佳答案

我会使用子字符串,因为输出总是以“Im currently in tab with index::”开头然后我会使用类似

String str = "Im currently in tab with index::" + element;
int i = str.indexOf("index::{L="));

然后使用循环获取该索引之后的字符,直到到达字符逗号然后跳出例如:

String L ="";
int i = str.indexOf("index::{L="));
while(true){
i++;
if(str.charAt(i) == ',')
break;
L+=str.charAt(i+1);
}

希望对你有帮助

关于android - 如何从元素中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11040493/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com