difference between text file and binary file

后端 未结 5 1680
执笔经年
执笔经年 2020-12-13 01:54

Why should we distinguish between text file and binary files when transmitting them? Why there are some channels designed only for textual data? At the bottom level, they ar

5条回答
  •  星月不相逢
    2020-12-13 02:43

    All files are saved in one of two file formats - binary or text. The two file types may look the same on the surface, but their internal structures are different.

    While both binary and text files contain data stored as a series of (bits (binary values of 1s and 0s), the bits in text files represent characters, while the bits in binary files represent custom data.

提交回复
热议问题