共计 440 个字符,预计需要花费 2 分钟才能阅读完成。
可以使用 JSON 库来将 Java 数组转换为 JSON 字符串。以下是一个使用 Jackson 库的示例代码:
import com.fasterxml.jackson.databind.ObjectMapper;
public class ArrayToJsonExample {public static void main(String[] args) {int[] array = {1, 2, 3, 4, 5};
// 创建 ObjectMapper 对象
ObjectMapper objectMapper = new ObjectMapper();
try {
// 将 Java 数组转换为 JSON 字符串
String json = objectMapper.writeValueAsString(array);
System.out.println(json);
} catch (Exception e) {e.printStackTrace();
}
}
}
输出结果将是一个包含数组元素的 JSON 字符串:[1,2,3,4,5]
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完