java数组json格式是怎样的
时间: 2023-12-09 19:02:19 浏览: 96
json数组格式大全
4星 · 用户满意度95%
在 Java 中将数组转换为 JSON 格式,可以使用 JSON 库进行转换。常用的 JSON 库有 Jackson、Gson、Fastjson 等。
以 Jackson 为例,示例代码如下:
```java
import com.fasterxml.jackson.databind.ObjectMapper;
public class Test {
public static void main(String[] args) throws Exception {
// 创建数组
int[] arr = {1, 2, 3, 4, 5};
// 将数组转换为 JSON 格式
ObjectMapper mapper = new ObjectMapper();
String json = mapper.writeValueAsString(arr);
System.out.println(json); // 输出:[1,2,3,4,5]
}
}
```
在上面的示例中,我们使用了 Jackson 的 ObjectMapper 类的 writeValueAsString() 方法将数组转换为 JSON 格式的字符串。Jackson 会自动将数组转换为 JSON 数组,即在数组的前后添加了方括号。
阅读全文