gpt4 book ai didi

Java程序——密码检查器

转载 作者:行者123 更新时间:2023-12-02 03:01:13 24 4
gpt4 key购买 nike

我需要编写一个程序,以字符串形式的密码作为输入。

我必须用我能想到的 15 个最常见密码创建一个数组,确保这些常见密码都不包含在用户密码中。我尝试了多个选项,但大多数只是返回一条错误消息,指出“字符串索引超出范围”之类的内容。

这是我最近的尝试。

for(int i = 0; i < commonPass.length; i++) 
{
if (password.indexOf(commonPass[i]) > 0)
{
System.out.println("Enter new password.");
password = kb.nextLine();
}
}

我对 Java 的了解相当基础,因此我们将非常感谢您提供的任何帮助。

Exception in thread "main" java.lang.StringIndexOutOfBoundsException: 
String index out of range: 8 at java.lang.String.charAt(Unknown Source) at PasswordProgram.main(PasswordProgram.java:95)

最佳答案

使用 contains 函数检查字符串是否包含该字符串。

for(int i = 0; i < commonPass.length; i++) 
{
if (password.contains(commonPass[i]))
{
System.out.println("Enter new password.");
password = kb.nextLine();
}
}

来自 Java 文档 (http://docs.oracle.com/javase/7/docs/api):

contains(CharSequence s):当且仅当此字符串包含指定的 char 值序列时返回 true。

我已经测试了以下代码,它应该可以正常工作。祝编程好运!

private void CheckPassword()
{
String[] commonPass = new String[4];
commonPass[0] = "testing";
commonPass[1] = "stackoverflow";
commonPass[2] = "coding";
commonPass[3] = "userinput";

Scanner s = new Scanner(System.in);

System.out.println("Enter your password.");
String password = s.nextLine();

for(int i = 0; i < commonPass.length; i++)
{
if (password.contains(commonPass[i]))
{
CheckPassword();
}
}

}

关于Java程序——密码检查器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22845249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com