如何在Android.org.apache.harmony.xml.ExpatParser中的Asset文件夾中的xml文件中良好地形成$ ParseException:在第19行第24列:不好-formed(無效令牌) 在org.apache.harmony.xml.ExpatParser.parseFragment(ExpatParser.java:520) 在org.apache.harmony.xml.ExpatParser.parseDocument(ExpatParser.java:479)Android中的資產文件夾中的xml文件中不允許使用特殊字符
下面是XML文件
<?xml version="1.0" encoding="UTF-8"?>
<menu>
<item>
<QNO>50</QNO>
<QUESTIONS>Which declaration of the main method below would allow a class to be started as a standalone program. Select the one correct answer.</QUESTIONS>
<ANSWER>35,35</ANSWER>
<OPTIONA>35,35</OPTIONA>
<OPTIONB>35,40</OPTIONB>
<OPTIONC>36,32</OPTIONC>
<OPTIOND>None of these</OPTIOND>
<EXPLAINATION>NONE</EXPLAINATION>
<QUESTIONTYPE>JAVA</QUESTIONTYPE>
</item>
<item>
<QNO>49</QNO>
<QUESTIONS>What all gets printed when the following code is compiled and run? Select the three correct answers.
public class xyz {
public static void main(String args[]) {
for(int i = 0; i < 2; i++) {
for(int j = 2; j>= 0; j--) {
if(i == j) break;
System.out.println("i=" + i + " j="+j);
}
}
}
}</QUESTIONS>
<ANSWER>35,35</ANSWER>
<OPTIONA>35,35</OPTIONA>
<OPTIONB>35,40</OPTIONB>
<OPTIONC>36,32</OPTIONC>
<OPTIOND>None of these</OPTIOND>
<EXPLAINATION>NONE</EXPLAINATION>
<QUESTIONTYPE>JAVA</QUESTIONTYPE>
</item>
<item>
<menu>
在第19行,列24 =公共靜態無效主要(字符串ARGS []){對於(INT I = 0;我< 2;我++){
有人回覆請。 – Remot 2014-09-23 11:59:26
XML中的字符「<」和「&」是嚴格違法的,此外它是一個很好的習慣,取而代之的是這兩個字符,並且還有以下內容:'<'='<','>'='>','& '='&','''=''','"'='「'。 – albciff 2014-09-23 12:13:01