我在JAVA里面写了一个list合集,我想要用map类型初始化list里面的东西
publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstubArrayList<TestLzp>lz...
public static void main(String[] args) {
// TODO Auto-generated method stub
ArrayList<TestLzp> lzp = new ArrayList<TestLzp>();
TestLzp tzd = new TestLzp("",0);
就是这里,我想要用map初始化一下我lzp里面的信息 展开
// TODO Auto-generated method stub
ArrayList<TestLzp> lzp = new ArrayList<TestLzp>();
TestLzp tzd = new TestLzp("",0);
就是这里,我想要用map初始化一下我lzp里面的信息 展开
展开全部
Portlet portlet = new Portlet(); //Portlet 你的TestLzp
JSONObject jsonObject = JSONObject.fromObject(portlet); // net.sf.json.JSONObject
Map map = new HashMap();
for (Object objectKey : jsonObject.keySet()){
String value = String.valueOf(jsonObject.get(objectKey));
map.put(objectKey,value);
}
System.out.println(map.toString());
展开全部
HashMap<String, Integer> hm = new HashMap<String, Integer>();
hm.put("", 0);
没怎么看懂问题, 你的TestLzp 是自定义类,构造器是(String,Integer)吧,
hm.put("", 0);
没怎么看懂问题, 你的TestLzp 是自定义类,构造器是(String,Integer)吧,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的意思是把list里的TestLzp对象,存到map中吗?
Map map=new HashMap();
for(Integer i=0;i<lzp .size();i++){
map1.put(i, lzp .get(i));
}
Map map=new HashMap();
for(Integer i=0;i<lzp .size();i++){
map1.put(i, lzp .get(i));
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
TestLzp 这个类的定义是怎样的?不好理解啊。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询