Why should I use a human readable file format?

后端 未结 24 1923
日久生厌
日久生厌 2020-12-04 17:53

Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn\'t the case?

EDIT: I did have this as an explana

24条回答
  •  情歌与酒
    2020-12-04 18:21

    A major reason is that if someone needs to read the data say, 30 years from now, human readable format can be figured out. Binary is much more difficult.

    If your have large data sets that are binary by nature (e.g. images), they obviously can't be stored in any other than binary form. But even then, the metadata could (and should!) be human-readable.

提交回复
热议问题