gpt4 book ai didi

java - 从 ArrayList HashMap 中的键/值中检索值

转载 作者:太空狗 更新时间:2023-10-29 16:04:01 24 4
gpt4 key购买 nike

我已经像这样将一些值存储到 ArrayList HashMap 中:

ArrayList<HashMap<String, String>> bookDetails = new ArrayList<HashMap<String, String>>();

HashMap<String, String> map = new HashMap<String, String>();

map.put("book_author", bookAuthor);
map.put("book_description", bookDescription);


bookDetails.add(map);

我只是希望能够检索描述值并将其显示在 TextView 中,我该怎么做呢?提前致谢。

最佳答案

像这样的东西应该可以工作:

TextView text = (TextView) findViewById(R.id.textview_id);
text.setText(bookDetails.get(0).get("book_description"));

除了调用 get(0),您当然也可以遍历 bookDetails 数组并获取当前迭代计数器变量,例如获取(n)

关于java - 从 ArrayList HashMap<String, String> 中的键/值中检索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21612415/

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