我在变量中有一个字符串值,例如 ID
XML 喜欢
<DocumentElement><Contact ID="1" Name="Test1" 1/><Contact ID="2" Name="TEST" /></DocumentElement>
我在 _s2 中获得了我的 id
我想在像 EmailArr 这样的字符串数组中添加所有 id
我已经做好了
Count=0;
EmailArr=new String[Count];
String _s2=event.getAttribute("ID").getValue();
if(_s2=="" || _s2==null){
_s2="N/A";
}
if(_s2!=null){
EmailArr[Count]=_s2;
Count=Count++;
}
我得到异常java.lang.ArrayIndexOutOfBoundsException