英雄们:帮我看看这是哪的毛病啊!急啊!
for(int i=0; i <chrRead.length ; i++){
if(chrRead[i].equals()){
break;}}
------解决方案--------------------chrRead[i].equals()
你的equals没有参数?equals什么,和什么做比较阿
------解决方案--------------------比较时用new String(charRead)变成string
然后用equals比较
------解决方案--------------------你的charRead是字符型的,要比较的话需要转换成string,或者用== '单个字符 '
------解决方案--------------------char[]chrRead = new char [10];
字符和字符串是不一样的。
String[] chrRead =new String [10];
------解决方案--------------------我想新建个文本,在里面写入成对的用户和密码?
为什么不用数据库?奇怪
------解决方案--------------------for(int i=0; i <chrRead.length ; i++){
if(chrRead[i].equals( " ")){
break;}}