HashMap是用键值对存储数据,使用要先导入几个Jackson包,之后,
例:Map<String,Object> map=new HashMap<String,Object>();
第一个String是键,第二个Object是存放的值,用put()函数向map里增加数据。
如果是在servlet里,可以用
ObjectMapper mapper = new ObjectMapper();
mapper.writeValue(response.getWriter(),map);
将map传递给jsp页面