.txt阅读器和打印机

时间:2013-06-21 20:10:19

标签: java bufferedreader filereader

我正在使用java IDE准备编程。我想让我的程序要求一个4位数的密码。我可以将数字存储在.txt文件中,但我希望能够在控制台中将其打印出来。所以说你有一个引号1234它会存储在一个名为Bank_Pin.txt的文件中,你可以编写一些代码,让你打印出来。这是我用来存储号码的内容:

                    int pinnum = c.readInt();
                    System.out.println ("Now creating the text fle Bank_Pin.txt.");
                    TextOutputFile a;
                    a = new TextOutputFile ("Bank_Pin.txt");
                    System.out.println ("Writing text file!");
                    a.println (pinnum);
                    a.close ();
                    System.out.println ("Done!");

这是放在while循环和if else if语句中,询问您是否已有代码。如果没有,您将被提示继续。但如果你这样做,我试图让它成为你可以打印代码并将其与将要输入的代码进行比较。

2 个答案:

答案 0 :(得分:0)

我从未在IDE上做过准备。但我在互联网上找到了以下代码。你能试试吗

Console c = new Console (); 
c.print("Your PIN Data"); 

答案 1 :(得分:0)

我从未使用过“Ready to Program”,但我认为它会像我用过的任何其他IDE(例如Eclipse和NetBeans)一样响应代码。您似乎需要ScannerPrintWriter课程才能让您的生活更轻松。 Scanner类非常适合检查文件是否存在以及用于写出文件的PrintWriter类。话虽这么说,我会尝试这样的事情:

while(true){
    Scanner fromFile, fromUser = new Scanner(System.in);
    boolean exists = false;
    int pin;

    try{//Attempts to open the file "Bank_Pin.txt" and read in a saved pin
        fromFile = new Scanner(new File("Bank_Pin.txt"));
        pin = fromFile.nextInt();
        exists = true;
    } catch (FileNotFoundException e) {
        System.out.println("No saved pin exists");
    } finally {//Closes open resources
        if(fromFile != null)
            fromFile.close();
    }

    if(!exists) {//If there isn't a saved pin
        System.out.print("Please input a pin: ");
        while(true) {//Ask for a pin until a valid one is given
            try{
                pin = sc.nextInt();
                if(String.valueOf(pin).length() != 4)//pin given isn't 4 digits
                    throw new InputMismatchException();
                break;
            } catch (InputMismatchException e) {
                System.out.print("\nPin input was not valid. Please reinput: ");
            }
        }
        PrintWriter out = new PrintWriter(new File("Bank_Pin.txt));
        out.println(pin);
        out.close();
        System.out.println("\nPin has been saved: " + pin);
    } else {
        System.out.println("Saved pin: " + pin);
    }

    fromUser.close();//Close input from keyboard
}

希望这就是你要找的东西。所有try-catch-finally语句都是出于安全目的,但如果需要,可以删除它们。