[Java] HashMap 을 JsonObject 에 담기
JSONObject jsonObj = new JSONObject(); // json 객체 선언JSONSerializer jsonSerializer = new JSONSerializer(); // map 객체를 json 형식으로 만들어주기위해 선언(List) hashmap;jsonObj.put("key", jsonSerializer.serialize(hashmap)); 위와 같은 방식으로 hashmap객체를 jsonobject 에 담아서 사용할 수 있다.
IT/Java
2015. 8. 10. 18:29
[Java] 한글 인코딩테스트 한번에 하기
String charSet[] = {"utf-8","euc-kr","8859_1"}; String fileName = "테스트"; for(int i = 0; i < charSet.length; i++) { for(int j = 0; j < charSet.length; j++) { System.out.println(charSet[i] + " to " + charSet[j] + " = " + new String(fileName.getBytes(charSet[i]),charSet[j])); } } http://otep.tistory.com/119 에서 퍼왔어요~
IT/Java
2015. 7. 16. 13:33