.NDJSON 文件扩展名
Newline Delimited JSON File
| 开发者 | ndjson |
| 受欢迎程度 |
3.3 | 9 票 |
什么是 NDJSON 文件?
An NDJSON file is a text file that stores structured data in the Newline Delimited JSON (NDJSON) format. It contains a series of JSON values, typically objects, with each value written on a separate line. NDJSON is closely related to the .JSONL file type, which uses the same basic one-JSON-value-per-line structure.
更多信息
NDJSON is designed for applications that need to process JSON data one record at a time, making NDJSON useful for streaming data and handling large collections of records. Developers commonly use NDJSON with UNIX-style text processing tools and shell pipelines, as well as for log files and passing data between applications or processes.
如何打开 NDJSON 文件
You can open NDJSON files with any text editor since they are plain text files. Some options include:
- Microsoft Notepad (Windows)
- Apple TextEdit (Mac)
- Vim (Linux)
- Microsoft Visual Studio Code (multiplatform)
You can also open an NDJSON file in the Google Chrome and Mozilla Firefox web browsers by dragging and dropping the file into your browser window.