在Java中可以使用第三方庫如org.json
或Gson
來將字符串轉換為JSON格式字符串。以下是使用org.json
庫的示例代碼:
import org.json.JSONObject;
public class StringToJsonExample {
public static void main(String[] args) {
String jsonString = "{\"name\": \"John\", \"age\": 30}";
JSONObject jsonObject = new JSONObject(jsonString);
String jsonOutput = jsonObject.toString();
System.out.println(jsonOutput);
}
}
在這個示例中,我們首先創建一個字符串jsonString
,然后使用JSONObject
類將其轉換為JSON對象,最后使用toString()
方法將JSON對象轉換為JSON格式的字符串。
如果您使用的是Gson
庫,可以使用以下示例代碼:
import com.google.gson.Gson;
public class StringToJsonExample {
public static void main(String[] args) {
String jsonString = "{\"name\": \"John\", \"age\": 30}";
Gson gson = new Gson();
Object jsonObject = gson.fromJson(jsonString, Object.class);
String jsonOutput = gson.toJson(jsonObject);
System.out.println(jsonOutput);
}
}
在這個示例中,我們創建一個Gson
對象,然后使用fromJson()
方法將字符串轉換為Object
對象,最后使用toJson()
方法將Object
對象轉換為JSON格式的字符串。