How To Convert A Java Object Into A JSON String - Tabnine Blog
How To Convert A Java Object Into A JSON String - Tabnine Blog
Help us improve by sharing
your feedback.
When learning how to write Java-based software, one of the first snags
developers hit is how to connect their code with other software. This is
Help us improve by sharing
Help us improve by sharing
usually where JSON comes in. While you might be a wizard with Java,
your feedback.
JSON is another animal. Regardless, this blog post explains all you need
to get the job done.
Help us improve by sharing
Help us improve by sharing
Context which is surrounded by quotes (single or double), loaded
your feedback.
Help us improve by sharing
Help us improve by sharing
android app. Let’s say the mobile app is a hybrid app where the front end is
your feedback.
handled by android view and the data transactions are sent through its own
web services using JSON. In this instance we need to send/receive
requests from the android app to/from our database using web services/api
using JSON data structure.
We can use the ObjectMapper class provided by the Jackson API for our
conversion.
classpath.
class useJACKSONapiToConvertJavaOBJtoJSONstring
1. import com.fasterxml.jackson.core.JsonProcessingException;
2. import com.fasterxml.jackson.databind.ObjectMapper;
3. public class useJACKSONapiToConvertJavaOBJtoJSONstring {
4. public static void main(String[] args) {
5. Cat cat = new Cat();
6. cat.setId(1L);
7. cat.setName("SiAm");
8. cat.setColor("Cream");
9. cat.setEyecolor("Blue");
10. cat.setBreed("Siamese");
11. ObjectMapper mapper = new ObjectMapper();
12. try {
13. String json = mapper.writeValueAsString(cat);
14. System.out.println("ResultingJSONstring = " + json);
15. //System.out.println(json);
16. } catch (JsonProcessingException e) {
17. e.printStackTrace();
18. }
19. class Cat
Help us improve by sharing
Help us improve by sharing
10. this.name = name; your feedback.
11. // Getters & Setters
12. @Override
13. public String toString() {
14. return "Cat{" +
15. "id=" + id +
16. ", name='" + name +
17. '\'' +
18. '}';
19. public Long getId() { return id; }
20. public void setId(Long id) { this.id = id; }
21. public String getName() { return name; }
22. public void setName(String name) { this.name = name; }
23. public String getColor() { return color; }
24. public void setColor(String color) { this.color = color; }
25. public String getEyecolor() { return eyecolor;
26. public void setEyecolor(String eyecolor) { this.eyecolor = eyecolor; }
27. public String getBreed() { return breed; }
28. public void setBreed(String breed) { this.breed = breed; }
29. }
The below example shows how to use GSON API to convert a Java Object
into a JSON String.
class UseGSONapitoConvertJavaOBJtoJASONstring
1. import com.google.gson.Gson;
2. public class UseGSONapitoConvertJavaOBJtoJASONstring{
3. public static void main(String args[]) {
4. CatDetails user = new CatDetails("SiAm",
5. "Siamese",
6. "siam.cat@gmail.com",
7. 9,
8. 2129991234L,
9. "NewCatadonia",
10. true);
11. Gson gson = new Gson();
12. String json = gson.toJson(user);
13. System.out.println(json);
14. }
Class CatDetails
1. /**
2. * Java Program to map a Java object to JSON String using GSON library.
3. */
4. class CatDetails {
5. private String name;
6. private String breed;
7. private String email;
8. private int catlives;
9. private long phone;
10. private String city;
11. private boolean likesMice;
12.
13. public CatDetails(String name, String breed, String email, int catlives, long
phone,
14. String city, boolean likesMice) {
15. super();
16. this.name = name;
17. this.email = email;
18. this.catlives = catlives;
19. this.phone = phone;
20. this.city = city;
21. this.likesMice = likesMice;
22. this.breed = breed;
23. //getters & setters
24. public String getName() {
25. return name;
26. }
27. public void setName(String name) {
28. this.name = name;
29. }
30. public String getBreed() {
31. return breed;
32. }
33. public void setBreed(String breed) {
34. this.breed = breed;
35. }
36. public String getEmail() {
37. return email;
38. }
39. public void setEmail(String email) {
40. this.email = email;
Help us improve by sharing
Help us improve by sharing
41. } your feedback.
42. public int getCatlives() {
43. return catlives;
44. }
45. public void setCatlives(int catlives) {
46. this.catlives = catlives;
47. }
48. public long getPhone() {
49. return phone;
50. }
51. public void setPhone(long phone) {
52. this.phone = phone;
53. }
54. public String getCity() {
55. return city;
56. }
57.
58. public void setCity(String city) {
59. this.city = city;
60. }
61. public boolean isLikesMice() {
62. return likesMice;
63. }
64. public void setLikesMice(boolean likesMice) {
65. this.likesMice = likesMice;
66. }
67. }
Result:
Conclusion
Converting a Java Obj to JSON string is simple using JACKSON or GSON
API.
In our examples we provided the code to make it easy for you to reproduce
in your IDE.
or
Use GSON API: class Gson
call toJson(ObjToConvert) method by passing the object we want to
convert into JSON;
Share this:
Related Posts
Help us improve by sharing
Help us improve by sharing
your feedback.
Help us improve by sharing
Help us improve by sharing
your feedback.
Top 9 Free Java Process Monitoring Tools & How to Choose One
June 10, 2019
Search … Search
Integrations
VSCode
Visual Studio
IntelliJ
Pycharm
Sublime
Atom
Eclipse
Vim
PhpStorm
RubyMine
WebStorm
Jupyter Notebook
JupyterLab Help us improve by sharing
JupyterLab Help us improve by sharing
your feedback.
Emacs
GoLand
Clion
Android Studio
Rider
DataGrip
AppCode
Kite vs Tabnine
Help us improve by sharing
Help us improve by sharing
your feedback.
Email Address
Subscribe
Get Tabnine