public static String strValueToJson(Map<Object, Object> strValue) {
JSONObject jsonobject = new JSONObject( strValue );
try {
return jsonobject.toString( strValue .size());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return jsonobject.toString();
}
}
'java' 카테고리의 다른 글
java 연산자 기호표 (0) | 2012.09.26 |
---|---|
can not find the tag library descriptor for http //java.sun.com/jsp/jstl/core (4) | 2012.07.03 |
if문 문자열 비교 (0) | 2012.04.16 |
InputStream > String , StringBuffer 변환 (0) | 2012.04.10 |
Java Build Path- Library추가. (1) | 2012.04.05 |