如何将字符数组转换为字符串?
我有这个代码
Console c = System.console();
if (c == null) {
System.err.println("No console.");
System.exit(1);
}
char [] password = c.readPassword("Enter your password: ");
我需要将其转换为字符串,以便验证
if(stringPassword == "Password"){
System.out.println("Valid");
}
谁能帮我这个?