Reputation: 46
So I'm getting an error that says:
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)
the makeUser function includes the following:
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;
}
}
the encryption method just encrypts the Strings using a caesar cypher
I know that Caesar cipher isn't the best type of encryption method, although, currently I'm just trying to make it dummy proof. the encryption method is as follows:
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);
}
}
}
the helloworld class where I'm getting the error has the following code:
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 is just a JPanel with JTextFields in it. My question is why am I getting this error, I would like a generalization of what I have to do so that I can figure it out myself, but if not possible then the solution is fine. Thank you for your time.
Upvotes: 0
Views: 970
Reputation: 3563
The operating system you are running on doesn't allow a name like drscqei<@.txt
. Windows for example doesn't allow <
Upvotes: 1