数组转json字符串
时间: 2023-06-30 11:20:15 浏览: 86
json对象或数组对象转换成字符串
4星 · 用户满意度95%
在大多数编程语言中,将数组转换为 JSON 字符串需要使用相应的库或工具。以下是一些常见语言的示例代码:
在 JavaScript 中:
```js
const arr = [1, 2, 3];
const jsonStr = JSON.stringify(arr);
console.log(jsonStr); // 输出 [1,2,3]
```
在 Python 中:
```python
import json
arr = [1, 2, 3]
json_str = json.dumps(arr)
print(json_str) # 输出 [1, 2, 3]
```
在 Java 中:
```java
import com.google.gson.Gson;
int[] arr = {1, 2, 3};
Gson gson = new Gson();
String jsonStr = gson.toJson(arr);
System.out.println(jsonStr); // 输出 [1,2,3]
```
在 C# 中:
```csharp
using System.Text.Json;
int[] arr = new int[] {1, 2, 3};
string jsonStr = JsonSerializer.Serialize(arr);
Console.WriteLine(jsonStr); // 输出 [1,2,3]
```
以上示例代码仅供参考,具体实现方式可能因编程语言和使用的库而异。
阅读全文