Before XML became a standard and given all its shortcomings, what made XML so popular?

后端 未结 23 1011
轻奢々
轻奢々 2021-02-04 09:01

Yes XML is human readable but so is comma delimited text and properties files.

XML is bloated, hard to parse, hard to modify in code, plus a ton of other problems that I

23条回答
  •  不要未来只要你来
    2021-02-04 09:37

    It's easier to write a parser for an XML dialect than for an arbitrary one because of tools that are available.

    Using a DOM parser, for example, is much simpler than lexx and yacc, especially in Java where it was popularized.

提交回复
热议问题