这是我的代码。当我打印字符串 cmd 时,它会打印出“print”,但是我的 if statemnet 仍然无法运行。这是我的代码:
public static void main(String[] args) throws InterruptedException {
String url = "http://xboxfl.co/java/inc/command.txt";
String cmd = Methods.getContents(url, "UTF-8");
System.out.println(cmd);
if(cmd.equalsIgnoreCase("print")){
System.out.println("it works");
}
}
希望有人可以提供帮助。谢谢!