我有一个 String 方法,我只想返回 if 语句之后的部分,而不是 else!我已经尝试过 try & catch 但也没有用。那可能吗?
PS.这是我第一次使用stackoverflow。
String split() {
String one = "", two = "";
int index = tableFields.indexOf("(");
if (index > 0){
one = tableFields.substring(0, index);
two = tableFields.substring(index + 1,
tableFields.length() - 1);
}
else {
System.out.println("error");
}
return "`" + one + "`" + " "+ two;
}