JSON转换double二维数组
时间: 2023-09-02 20:08:58 浏览: 184
以下是将JSON字符串转换为double二维数组的示例代码:
```
import com.fasterxml.jackson.databind.ObjectMapper;
public class JsonToDoubleArray {
public static void main(String[] args) {
String json = "[[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]";
ObjectMapper mapper = new ObjectMapper();
try {
double[][] array = mapper.readValue(json, double[][].class);
for (double[] row : array) {
for (double value : row) {
System.out.print(value + " ");
}
System.out.println();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
在这个例子中,我们首先定义了一个JSON字符串表示一个2x3的double数组。然后,我们创建了一个ObjectMapper实例,使用它将JSON字符串转换为double二维数组。最后,我们循环遍历该数组并打印出每个值。
阅读全文