我想在第一个空格中拆分一个字符串,但是当我尝试在条件中使用拆分字符串"如果"它没有用。
String parentName = new String();
String[] fullName = a.getPathComponent(1).toString().split("\\s+"); //also try with split (" ");
parentName = fullName[0];
if (parentName == "DBPedia"){
...
}
例如,fullName将采用字符串" DBPedia(23)",以及拆分字符串" parentName"将只有字符串" DBPedia",但当我在&#34时使用字符串;如果"它没有进入条件。可能是什么问题?