2017-10-04 99 views
0

所以我得到一个错误,指出:麻烦与文件输出流

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; 
    } 

} 

加密方法只使用一个加密字串凯撒密码

我知道凯撒密码不是最好的加密类型m虽然,目前我只是想让它变成虚拟证明。 加密方法如下:

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); 

注册只是一个JPanel与JTextField的在里面。我的问题是,为什么我得到这个错误,我想推广一下我必须做的事情,以便我可以自己弄清楚,但如果不可能,那么解决方案就没有问题。感谢您的时间。

+0

在将文件传递给FileWriter之前,您是否尝试过在文件上调用'File.createNewFile()'?可能首先也要检查'File.exists()'。 –

+1

改变你的加密方法,只包含允许的字符作为文件名 –

+0

@AhmadAlsanie谢谢你,这种类型的错误是困扰我很多的类型哈哈。 – dirtydan

回答

1

您正在运行的操作系统不允许使用像drscqei<@.txt这样的名称。 Windows例如doesn't allow <

+0

感谢人哈哈不久之后就意识到了这一点,并因为这样一个愚蠢的错误而殴打自己。 – dirtydan