gpt4 book ai didi

java - 我们可以使用 Linq 从 Java 中的集合对象中获取值吗?

转载 作者:行者123 更新时间:2023-11-30 06:35:33 26 4
gpt4 key购买 nike

现在我在黑莓机上工作了几天,我将一些 JSON 数组解析为字符串,然后将其转换为 Hashtable,就像这样

这是我的 JSON 字符串

[ 
{
"StdID":"A1",
"RollNo":"23",
"Class":"First"

},
{
"StdID":"A2",
"RollNo":"13",
"Class":"First"

},
{
"StdID":"A3",
"RollNo":"53",
"Class":"Second"

},
{
"StdID":"A4",
"RollNo":"33",
"Class":"Third"

},

]

然后我将其解析为哈希表

Hashtable t1=new Hashtable();
t1.put("StdID","A1");
t1.put("RollNo","23");
t1.put("Class","First");
Hashtable t2=new Hashtable();
t2.put("StdID","A2");
t2.put("RollNo","13");
t2.put("Class","First");
Hashtable t3=new Hashtable();
t3.put("StdID","A3");
t3.put("RollNo","53");
t3.put("Class","Second");
Hashtable t4=new Hashtable();
t4.put("StdID","A4");
t4.put("RollNo","33");
t4.put("Class","Third");

Hashtable main=new Hashtable ();

main.put(new Integer(1), t1);
main.put(new Integer(2), t2);
main.put(new Integer(3), t3);
main.put(new Integer(4), t4);

那么我可以/我怎样才能检索值作为

select students which have First class

所以有人可以帮助我吗?这可以通过 LINQ 实现吗?

最佳答案

关于java - 我们可以使用 Linq 从 Java 中的集合对象中获取值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5965821/

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