所以我收到的错误是:
java.io.FileNotFoundException: drscqei<@.txt (The filename, directory name,
or volume label syntax is incorrect)
at java.io.FileOutputStream.open0(Native Method)
at java.io.FileOutputStream.open(Unknown Source)
at java.io.FileOutputStream.<init>(Unknown Source)
at java.io.FileOutputStream.<init>(Unknown Source)
at java.io.FileWriter.<init>(Unknown Source)
at ch1.User.makeUser(User.java:205)
at ch1.helloworld.main(helloworld.java:94)
makeUser 功能包括以下内容:
public static User makeUser(String fn, String ln, String un, String pw, String cpw, String dob) {
if (pw.equals(cpw)) {
System.out.println("pass is same as confirm.");
if (containsNumber(pw) && charLength(pw) && charLength(un) && !(containsInvalidSymbol(un))) {
System.out.println(
"pw has an uppercase and lower and doesnt have any symbols and length of un and pw are greater than 5 and less than 50.");
encrypt(fn, ln, un, pw, dob);
File f = new File(encryptedUser + ".txt");
try {
FileWriter fw = new FileWriter(f);
fw.write(encryptedFn + "," + encryptedLn + "," + encryptedUser + "," + encryptedPass + ","
+ encryptedDob);
fw.flush();
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
return new User(fn, encryptedLn, encryptedUser, encryptedPass, encryptedDob);
} else {
return null;
}
} else {
return null;
}
}
加密方法只是使用caesar cypher加密字符串
我知道Caesar密码不是最好的加密方法,但是,目前我只是想让它成为虚拟证据。 加密方法如下:
public static void encrypt(String fn, String ln, String un, String pw, String dob) {
int shift = 10;
for (int x = 0; x < un.length(); x++) {
char c = (char) (un.charAt(x) + shift);
if (c > 'z') {
encryptedUser += (char) ((un.charAt(x) - 26) + shift);
} else {
encryptedUser += (char) (un.charAt(x) + shift);
}
}
}
我收到错误的 helloworld 类包含以下代码:
boolean signUpScreen = true;
do {
int s = JOptionPane.showOptionDialog(null, signUp, "Sign Up", JOptionPane.OK_CANCEL_OPTION,
JOptionPane.PLAIN_MESSAGE, null, Enter_Cancel, Enter_Cancel[0]);
if (s == JOptionPane.OK_OPTION) {
User.eraseEncryptions();
User sUser = User.makeUser(signUpfn.getText(), signUpln.getText(), signUpUser.getText(),
signUpPass.getText(), signUpCPass.getText(), signUpDob.getText());
if (sUser == null) {
JOptionPane.showMessageDialog(null,
"Sorry, something went wrong. please check that you have filled in all the text fields and that your password is the same as your confirm password.",
"Error", JOptionPane.PLAIN_MESSAGE);
} else {
JOptionPane.showMessageDialog(null,
"Success! You have created a new account! welcome " + User.fn, "Account Created",
JOptionPane.PLAIN_MESSAGE);
signUpScreen = false;
}
} else {
signUpScreen = false;
}
} while (signUpScreen);
signUp 只是一个包含JTextFields的JPanel。我的问题是为什么我会收到这个错误,我希望对我必须做的事情进行概括,以便我能够自己解决,但如果不可能那么解决方案就可以了。谢谢你的时间。