可以在XML声明之前发表评论吗?

将XML声明之前的注释放在XML文件中可以吗?
<!--
Is this bad to do?
-->
<?xml version="1.0" encoding="utf-8"?>
<someElement />
不,不行

Appendix F of the XML spec说:

Because each XML entity not
accompanied by external encoding
information and not in UTF-8 or UTF-16
encoding must begin with an XML
encoding declaration,in which the
first characters must be ‘< ?xml’,any
conforming processor can detect,after
two to four octets of input,which of
the following cases apply.

啊,但是,F节是非规范的,你说。

那么,section 2.1给出了一个格式良好的XML文档的生产,因此:

[1]     document       ::=       prolog element Misc*

…在section 2.8我们得到了“prolog”的生产:

[22]    prolog     ::=       XMLDecl? Misc* (doctypedecl Misc*)?
[23]    XMLDecl    ::=      '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>'

所以,你可以省略< ?xml声明,但你不能用任何东西前缀。 (顺便提及,“杂项”是评论的类别)。

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...