java的int的输出格式_各种类型的对象的输出格式总结

package com.example.demo.util;

import com.alibaba.fastjson.JSON;

import com.alibaba.fastjson.JSONArray;

import com.alibaba.fastjson.JSONObject;

import com.example.demo.entity.User;

import java.util.ArrayList;

import java.util.Arrays;

import java.util.List;

/**

* 各种类型的对象的输出格式总结

*/

public class ObjectOutputFormat {

/**

* int数组输出格式

*

* [1, 2, 3]

*/

public static void test3() {

int[] nums = {1,2,3};

System.out.println(Arrays.toString(nums));

}

/**

* JSONObject以jsonString形式把存储的int数组输出格式

*

* {

* "msg":"success",

* "code":"200",

* "data":[

* 1,

* 2,

* 3

* ]

* }

*/

public static void test4() {

//1. 初始化数据

JSONObject jsonObject = new JSONObject();

jsonObject.put("code", "200");

jsonObject.put("msg", "success");

int[] nums = {1,2,3};

jsonObject.put("data", nums);

//2. 对象转json字符串

String jsonString = JSON.toJSONString(jsonObject);

//3. 输出

System.out.println(jsonString);

}

/**

* JSONArray中存储的int数组输出格式

*

* [1,2,3]

*/

public static void test5() {

//1. 初始化数据

int[] nums = {1,2,3};

JSONObject jsonObject = new JSONObject();

jsonObject.put("code", "200");

jsonObject.put("msg", "success");

jsonObject.put("data", nums);

//2. 对象转json字符串

String jsonString = JSON.toJSONString(jsonObject);

//3. 解析jsonString

JSONObject newJsonObject = JSON.parseObject(jsonString);

//4. 获取JSONArray数据

JSONArray jsonArray = newJsonObject.getJSONArray("data");

//3. 输出

System.out.println(jsonArray);

}

/**

* 对象User输出格式

*

* User {

* id=1,

* name='刘德华'

* }

*/

public static void test1() {

User u = new User(1,"刘德华");

System.out.println(u.toString());

}

/**

* 对象User的json格式表示

*

* {

* "id":1,

* "name":"刘德华"

* }

*/

public static void test2() {

User u = new User(1,"刘德华");

System.out.println(JSON.toJSON(u));

System.out.println(JSON.toJSONString(u));

}

/**

* List输出格式

*

* [

* User{

* id=1,

* name='刘德华'

* },

* User{

* id=1,

* name='林峰'

* },

* User{

* id=1,

* name='毛不易'

* }

* ]

*/

public static void test6() {

//1. 创建User集合

List users = new ArrayList<>();

User u1 = new User(1,"刘德华");

User u2 = new User(1,"林峰");

User u3 = new User(1,"毛不易");

users.add(u1);

users.add(u2);

users.add(u3);

//2. 输出List

System.out.println(users);

}

/**

* List转json 字符串的输出格式

*

* [

* {

* "id":1,

* "name":"刘德华"

* },

* {

* "id":1,

* "name":"林峰"

* },

* {

* "id":1,

* "name":"毛不易"

* }

* ]

*/

public static void test9() {

//1. 创建User集合

List users = new ArrayList<>();

User u1 = new User(1,"刘德华");

User u2 = new User(1,"林峰");

User u3 = new User(1,"毛不易");

users.add(u1);

users.add(u2);

users.add(u3);

//2. jsonString

String jsonString = JSONArray.toJSONString(users);

System.out.println("方式一:" + jsonString);

jsonString = JSON.toJSONString(users);

System.out.println("方式二:" + jsonString);

}

/**

* JSONObject以json字符串的形式输出User数组

*

* {

* "msg":"success",

* "code":"200",

* "data":[

* {

* "id":1,

* "name":"刘德华"

* },

* {

* "id":1,

* "name":"林峰"

* },

* {

* "id":1,

* "name":"毛不易"

* }]

* }

*/

public static void test7() {

//1. 创建User集合

List users = new ArrayList<>();

User u1 = new User(1,"刘德华");

User u2 = new User(1,"林峰");

User u3 = new User(1,"毛不易");

users.add(u1);

users.add(u2);

users.add(u3);

//2. 创建JSONObject

JSONObject jsonObject = new JSONObject();

jsonObject.put("code", "200");

jsonObject.put("msg", "success");

jsonObject.put("data", users);

System.out.println("jsonObject = " + jsonObject);

//3. 创建jsonString

String jsonString = JSON.toJSONString(jsonObject);

System.out.println(jsonString);

}

/**

* User对象在JSONArray中的输出格式

*

* [

* {

* "name":"刘德华",

* "id":1

* },

* {

* "name":"林峰",

* "id":1

* },

* {

* "name":"毛不易",

* "id":1

* }

* ]

*/

public static void test8() {

//1. 创建User集合

List users = new ArrayList<>();

User u1 = new User(1,"刘德华");

User u2 = new User(1,"林峰");

User u3 = new User(1,"毛不易");

users.add(u1);

users.add(u2);

users.add(u3);

//2. 创建JSONObject

JSONObject jsonObject = new JSONObject();

jsonObject.put("code", "200");

jsonObject.put("msg", "success");

jsonObject.put("data", users);

//3. 创建jsonString

String jsonString = JSON.toJSONString(jsonObject);

//4. 解析

JSONObject newJsonObject = JSON.parseObject(jsonString);

//5. 创建JSONArray

JSONArray jsonArray = newJsonObject.getJSONArray("data");

//6. 输出

System.out.println(jsonArray);

}

public static void main(String[] args) {

System.out.println("\nint数组输出格式:");

test3();

System.out.println("\nJSONObject以jsonString形式把存储的int数组输出格式: ");

test4();

System.out.println("\nJSONArray中存储的int数组输出格式: ");

test5();

System.out.println("对象User输出格式: ");

test1();

System.out.println("\n对象User的json格式表示: ");

test2();

System.out.println("\nList输出格式: ");

test6();

System.out.println("\nJSONObject以json字符串的形式输出User数组: ");

test7();

System.out.println("\nUser对象在JSONArray中的输出格式: ");

test8();

System.out.println("\nList转json 字符串的输出格式: ");

test9();

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值