今天在做XML解析的时候,总是给我报 The processing instruction target matching "[xX][mM][lL]" is not allowed 和XML Parsing Error: XML or text declaration not at start of entity
的错误,后来查了下讲大概意思是android中解析的时候xml文件格式问题。
在文件的最前端 即<?xml version="1.0" encoding="UTF-8"?>前面不能有空格。
删了空格即好。
原文链接:https://www.f2er.com/xml/295544.html