Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java에서 Gson 라이브러리를 사용하여 날짜 형식을 지정하는 방법은 무엇입니까?


Gson Google에서 만든 Java용 JSON 라이브러리입니다. . Gson을 사용하여 JSON을 생성하고 JSON을 Java 객체로 변환할 수 있습니다. GsonBuilder 인스턴스 를 생성하여 Gson 인스턴스를 생성할 수 있습니다. 전화 걸기 create() 방법. GsonBuilder().setDateFormat() 메소드는 제공된 패턴에 따라 Date 객체를 직렬화하도록 Gson을 구성합니다.

구문

public GsonBuilder setDateFormat(java.lang.String pattern)

예시

import java.util.Date;
import com.google.gson.*;
public class DateformatTest {
   public static void main(String[] args) {
      Employee emp = new Employee(115, "Surya", new Date(), 25000.00);
      Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd").create();
      String result = gson.toJson(emp);
      System.out.println(result);
   }
}
// Employee class
class Employee {
   private int id;
   private String name;
   private Date doj;
   private double salary;
   public Employee(int id, String name, Date doj, double salary) {
      this.id = id;
      this.name = name;
      this.doj = doj;
      this.salary = salary;
   }
}

출력

{"id":115,"name":"Surya","doj":"2019-09-26","salary":25000.0}