Object To Json String
Java Json 2017
package com.gson.json; import com.google.gson.Gson; public class ObjectToJsonString { public static void main(String a[]) { Employee emp = new Employee(); emp.setEmpId(100); emp.setName("Antonio"); emp.setSalary(20000); emp.setDesignation("Manager"); emp.setDepartment("Accounts"); Gson gsonObj = new Gson(); // converts object to json string String jsonStr = gsonObj.toJson(emp); System.out.println(jsonStr); } } class Employee { private int empId; private String name; private String designation; private String department; private int salary; public int getEmpId() { return empId; } public void setEmpId(int empId) { this.empId = empId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDesignation() { return designation; } public void setDesignation(String designation) { this.designation = designation; } public String getDepartment() { return department; } public void setDepartment(String department) { this.department = department; } public int getSalary() { return salary; } public void setSalary(int salary) { this.salary = salary; } }
0 nhận xét:
Post a Comment