Why should I use a human readable file format?

后端 未结 24 1886
日久生厌
日久生厌 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:04

    As an adjuct to this, there are differing levels of human readability, and all are enhanced by using a good editor or viewer with code coloring, folding or navigation.

    For example,

    • JSON is quite readable even in plaintext
    • XML has the angle bracket tax but is usable when using a good editor
    • INI is mostly human readable
    • CSV can be readable, but is best when loaded into a spreadsheet.

提交回复
热议问题