.CBOR 파일 확장자
Concise Binary Object Representation
| 개발사 | Carsten Bormann |
| 인기도 |
3.0 | 1 투표 |
CBOR 파일이란 무엇인가요?
A CBOR file is a data file saved in the Concise Binary Object Representation format. CBOR files are similar to .JSON files, in that they contain sets of name-value pairs. However, while JSON files are plain text files (and contain human-readable data), CBOR files are binary files (and do not contain human-readable data).
추가 정보
Carsten Bormann created the CBOR format to provide a compact alternative to JSON. The format was further defined and formalized in the Internet Engineering Task Force's Request for Comments 8949, published in December 2020.
Just like JSON files, CBOR files are most often used to exchange information among computers, servers, and other devices (especially Internet of Things devices). Because CBOR files are saved in a more-concise, binary format, devices can process CBOR files more quickly than they can process JSON files. The tradeoff, however, is that users cannot easily open CBOR files and examine the data they contain.
CBOR 파일을 여는 방법
You can use various CBOR implementations to decode a CBOR file to a plain text format. After doing so, you can view the data your CBOR file contains. A list of common CBOR implementations is maintained here.