发生了多个问题,在“标签作业”期间发生内部错误

时间:2013-12-07 11:32:29

标签: android eclipse

当我尝试调试我的android项目时,我遇到一个错误说:
发生了多个问题,在“标签作业”期间发生内部错误 这是一张图片,可以更好地理解这是什么样的错误:
enter image description here

我不知道这是什么,似乎很难找到有关此链接的信息:An internal error occurred during: "Label Job" in Android debugging

这是我正在尝试执行的代码,我认为代码没有问题:

if (!result.equals("Nothing")){
                    String records[] = result.split(PublicVariable.FIELD_SPLITTER);
                    String name;
                    City city= new City(activity);
                    city.empty();
                    for(int i=0;i<records.length;i++){
                        name = records[i];
                        city = new City(activity, name);
                        city.insert();
                    }
                    xLog.info("Cities inserted...");
                }

也许这是一个Eclipse bug。

0 个答案:

没有答案