.CBOR Rozszerzenie pliku
Concise Binary Object Representation
| Deweloper | Carsten Bormann |
| Popularność |
3.0 | 1 Głos |
Czym jest plik 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).
Więcej informacji
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.
Jak otworzyć plik 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.