摘要: import java.util.ArrayList; import java.util.Date; import java.util.List; import net.sf.json.JSONObject; public class Test { public static void main(String[] args) { Mybean bean = new Test().new... 阅读全文
posted @ 2016-11-10 18:25 N神3 阅读(318) 评论(0) 推荐(0)
摘要: import org.apache.commons.beanutils.BeanUtils;public class Person { private String name; public String getName() { return name; } public void setName( 阅读全文
posted @ 2016-11-10 14:21 N神3 阅读(471) 评论(0) 推荐(0)
摘要: //LinkedHashMap先入先出 public class Test { public static void main(String[] args) { Map map = new HashMap(); map.put("aaa", "111"); map.put("bbb", "222"); map.put("ccc", "333"); for(Entry e :map.entryS... 阅读全文
posted @ 2016-11-10 09:54 N神3 阅读(3356) 评论(0) 推荐(0)