用java将txt转为json
时间: 2023-04-08 12:01:08 浏览: 115
可以使用Java的JSON库,如Jackson或Gson,将txt文件转换为JSON格式。以下是一个示例代码片段:
```
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import com.fasterxml.jackson.databind.ObjectMapper;
public class TxtToJsonConverter {
public static void main(String[] args) {
try {
BufferedReader reader = new BufferedReader(new FileReader("input.txt"));
String line;
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
String json = new ObjectMapper().writeValueAsString(sb.toString());
System.out.println(json);
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这个程序将读取名为“input.txt”的文件,将其内容转换为JSON格式,并将其输出到控制台。
阅读全文