將JSONObject轉換為String的最簡單方法是使用其toString()方法。例如:
JSONObject jsonObject = new JSONObject();
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
String jsonString = jsonObject.toString();
System.out.println(jsonString);
這將打印出JSON對象的字符串表示形式:
{"key1":"value1","key2":"value2"}
另外,也可以使用Jackson庫的ObjectMapper類來實現JSONObject到String的轉換。例如:
ObjectMapper objectMapper = new ObjectMapper();
String jsonString = objectMapper.writeValueAsString(jsonObject);
System.out.println(jsonString);
這種方法在處理更復雜的JSON結構時更加靈活和強大。