Java는 JSON 데이터로 작업할 수 있는 두 가지 매우 강력한 라이브러리를 제공합니다. 잭슨 그리고 그손 도서관. 반환된 JSON 데이터를 쉽게 사용하려면 JSON 응답을 맵으로 변환해야 하는 경우가 많습니다.
JSON 형식은 본질적으로 키-값 쌍 그룹화이고 맵은 데이터를 키-값 쌍으로 저장하기 때문에 JSON 데이터를 맵으로 쉽게 변환할 수 있습니다.
JACKSON 및 Gson 라이브러리를 모두 사용하여 JSON 데이터를 지도로 변환하는 방법을 이해해 보겠습니다. 또한 두 라이브러리를 모두 사용하여 지도 데이터를 JSON으로 변환하는 방법도 이해합니다.
리틱 로샨 나이
시스템에 다음 데이터가 포함된 Sample.json 파일이 있다고 가정해 보겠습니다.
{ 'Name' : 'Donal', 'Mobile' : '89346724', 'Designation' : 'Sr. Salesforce Developer', 'Pet' : 'Dog', 'Address' : 'AMERICA' }
잭슨 도서관
JSON 데이터를 Java Map으로 변환하기 위해 JACKSON 라이브러리의 도움을 받습니다. JACKSON 라이브러리와 작동하도록 POM.xml 파일에 다음 종속성을 추가합니다.
com.fasterxml.jackson.core jackson-databind 2.5.3
ObjectMapper, File 및 TypeReference 클래스를 사용하여 JSON 데이터를 맵으로 변환하는 논리를 구현해 보겠습니다.
JacksonConvertJSONToMap.java
// import required classes and packages package javaTpoint.JavaExample; import java.io.File; // for reading file data import java.util.Map; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; // create JacksonConvertJSONToMap class to convert JSON data into Java Map public class JacksonConvertJSONToMap { // main() method start public static void main(String args[]) { // create instance of the ObjectMapper class to map JSON data ObjectMapper mapper = new ObjectMapper(); // create instance of the File class File fileObj = new File('C:\Users\rastogi ji\OneDrive\Desktop\Sample.json'); // use try-catch block to convert JSON data into Map try { // read JSON data from file using fileObj and map it using ObjectMapper and TypeReference classes Map userData = mapper.readValue( fileObj, new TypeReference<map>() { }); // print all key-value pairs System.out.println('Name : ' + userData.get('Name')); System.out.println('Mobile : ' + userData.get('Mobile')); System.out.println('Designation : ' + userData.get('Designation')); System.out.println('Pet : ' + userData.get('Pet')); System.out.println('Address : ' + userData.get('Address')); } catch (Exception e) { // show error message e.printStackTrace(); } } } </map>
산출:
C에서 배열 길이를 얻으십시오
지도 데이터를 API에 JSON으로 전달해야 하는 경우가 많기 때문에 Java 지도를 JSON으로 변환하는 방법을 이해하기 위해 Jackson 라이브러리의 또 다른 예를 살펴보겠습니다. 따라서 이 예에서는 지도 데이터를 JSON으로 변환하여 파일에 저장합니다.
JacksonConvertMapToJson.java
// import required classes and packages package javaTpoint.JavaExample; import java.io.File; import java.util.HashMap; import java.util.Map; import java.util.Scanner; import com.fasterxml.jackson.databind.ObjectMapper; //create JacksonConvertMapToJSON class to convert Map data into JSON public class JacksonConvertMapToJSON { // main() method start public static void main(String args[]) { // create instance of the ObjectMapper class ObjectMapper mapper = new ObjectMapper(); // declare and initialize map (key is of type String and value is of type Object) Map userData = new HashMap(); // declare variables and array to store user entered data String name, price, model; String colors[]; // create an instance of the Scanner class Scanner sc = new Scanner(System.in); // take inputs from the user and store them to the variables System.out.println('Enter the name of the car: '); name = sc.nextLine(); System.out.println('Enter the modal number of the car: '); model = sc.nextLine(); System.out.println('Enter the price of the car: '); price = sc.nextLine(); colors = new String[3]; colors[0] = 'Red'; colors[1] = 'Black'; colors[2] = 'White'; // close Scanner class object sc.close(); // fill userData map userData.put('Car', name); userData.put('Price', price); userData.put('Model', model); userData.put('Colors', colors); // use try-catch block to convert Java map into JSON try { // use ObjectMapper class to convert Map data into JSON and write it into Sample.json file mapper.writeValue(new File('C:\Users\rastogi ji\OneDrive\Desktop\Sample.json'), userData); System.out.println('Map data successfully written to the Sample.json file.'); } catch (Exception e) { // handle exception e.printStackTrace(); } } }
산출:
지손 도서관
그손 라이브러리는 JSON 데이터를 지도로 변환하거나 지도 데이터를 JSON으로 변환하는 데 사용할 수 있는 또 다른 라이브러리입니다. Gson 라이브러리를 사용하려면 POM.xml 파일에 다음 종속성을 추가해야 합니다.
Java에서 마커 인터페이스를 사용하는 이유
com.google.code.gson gson 2.8.3
GsonConvertJSONToMap.java
//import required classes and packages package javaTpoint.JavaExample; import java.util.HashMap; import java.util.Map; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; //create GsonConvertJSONToMap class to convert JSON data into Java Map public class GsonConvertJSONToMap { // main() method start public static void main(String args[]) { // create variable loc that store location of the Sample.json file String loc = 'C:\Users\rastogi ji\OneDrive\Desktop\Sample.json'; String result; try { // read byte data from the Sample.json file and convert it into String result = new String(Files.readAllBytes(Paths.get(loc))); // store string data into Map by using TypeToken class Map userData = new Gson().fromJson(result, new TypeToken<hashmap>() { }.getType()); // print all key-value pairs System.out.println('Name : ' + userData.get('Name')); System.out.println('Mobile : ' + userData.get('Mobile')); System.out.println('Designation : ' + userData.get('Designation')); System.out.println('Pet : ' + userData.get('Pet')); System.out.println('Address : ' + userData.get('Address')); } catch (IOException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } } </hashmap>
산출:
Java 맵을 JSON으로 변환하는 방법을 이해하기 위해 Gson 라이브러리의 또 다른 예를 살펴보겠습니다. Gson 라이브러리를 사용하는 것은 Jackson 라이브러리와 약간 다릅니다.
GsonConvertMapToJson.java
//import required classes and packages package javaTpoint.JavaExample; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Scanner; import com.google.gson.Gson; //create GsonConvertMapToJson class to convert Map data into JSON public class GsonConvertMapToJson { // main() method start public static void main(String args[]) { // declare and initialize map(key is of type String and value is of type Object) Map userData = new HashMap(); // declare variables and array to store user entered data String name, price, model; String colors[]; // create an instance of the Scanner class Scanner sc = new Scanner(System.in); // take inputs from the user and store them to the variables System.out.println('Enter the name of the car: '); name = sc.nextLine(); System.out.println('Enter the modal number of the car: '); model = sc.nextLine(); System.out.println('Enter the price of the car: '); price = sc.nextLine(); colors = new String[3]; colors[0] = 'Red'; colors[1] = 'Black'; colors[2] = 'White'; // close Scanner class object sc.close(); // fill userData map userData.put('Car', name); userData.put('Price', price); userData.put('Model', model); userData.put('Colors', colors); // use try-catch block to convert Java map into JSON try (FileWriter file = new FileWriter('C:\Users\rastogi ji\OneDrive\Desktop\Sample.json')) { // create instance of the Gson Gson gsonObj = new Gson(); // convert userData map to json string String jsonStr = gsonObj.toJson(userData); // use write() of File to write json string into file file.write(jsonStr); // use flush() method to flushes stream file.flush(); System.out.println('Map data successfully written to the Sample.json file.'); } catch (IOException e) { // error handling and exceptions e.printStackTrace(); } } }
산출: