赞
踩
Java 中 ==不能用来比较String是否相等,==比较的是String对象的地址是否相等。 需要使用.equal()。 坑大爹改了一晚上。谨记。
==
.equal()
if(!mess[0].equals(nonce)){ return "1"; }