怎么让java中的输入名不区分大小写
3个回答
展开全部
import java.util.Scanner;
public class Mymatch {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String in = input.next();//输入字符串 hello
System.out.println(in); //打印
System.out.println(in.equalsIgnoreCase("HELLO")); //忽略大小写比较
}
}
可以吗?
结果:
hello
hello
true
public class Mymatch {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String in = input.next();//输入字符串 hello
System.out.println(in); //打印
System.out.println(in.equalsIgnoreCase("HELLO")); //忽略大小写比较
}
}
可以吗?
结果:
hello
hello
true
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
str.toLowerCase();
str.toUpperCase();
str.equalsIgnoreCase(anotherString)
将字符串统一改为大写或小写
str.toUpperCase();
str.equalsIgnoreCase(anotherString)
将字符串统一改为大写或小写
追问
如果我输入统一变成大写的
,我的登录名是在数据库是小写的
那么他转化时就变成大写的,
和数据库不匹配,所以用户名不存在
追答
数据库语句这么写 select name from tablename
where lower(name) = 'username';
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询