JAVA设置json数组怎么写

java 数组转换为 json 数组的方法有:使用 jackson 库:通过 objectmapper 将数组转换为 json 字符串。使用 gson 库:通过 gson 实例将数组转换为 json 字符串。

JAVA设置json数组怎么写

Java 数组转换为 JSON 数组

方法:

1. 使用 Jackson 库:

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;

public class ConvertArrayToJsonArray {

    public static void main(String[] args) throws JsonProcessingException {
        // 创建一个字符串数组
        String[] array = {"apple", "banana", "cherry"};

        // 使用 Jackson 库将数组转换为 JSON 数组
        ObjectMapper mapper = new ObjectMapper();
        String jsonArray = mapper.writeValueAsString(array);

        // 打印 JSON 数组
        System.out.println(jsonArray);
    }
}

2. 使用 GSON 库:

import com.google.gson.Gson;

public class ConvertArrayToJsonArray {

    public static void main(String[] args) {
        // 创建一个字符串数组
        String[] array = {"apple", "banana", "cherry"};

        // 使用 GSON 库将数组转换为 JSON 数组
        Gson gson = new Gson();
        String jsonArray = gson.toJson(array);

        // 打印 JSON 数组
        System.out.println(jsonArray);
    }
}

输出:

["apple", "banana", "cherry"]

以上就是JAVA设置json数组怎么写的详细内容,更多请关注硕下网其它相关文章!