Java:文件目录和替换问题

时间:2015-06-16 09:29:18

标签: java

我正在创建一个程序,用户在文本字段中输入值,然后生成目录和文本文件。但问题是,当我运行程序时,它也会在程序捕获异常时生成目录,然后创建一个文本文件。我只希望在用户输入值时发生这种情况。然后它制作目录和文本文件。

第二: 生成文本文件然后再次运行程序运行文本文件替换为新文件。旧的一个被取代。我想再次制作新的文本文件,如open1.txt& open2.txt

代码:

public class V extends JFrame{

    private JTextField t1;
    private JTextField t2;
    private JButton b1;

    public V(){
        File file1 = new File("C:\\Users\\hamel\\Desktop\\z");
        file1.mkdirs();
        File file2 = new File("C:\\Users\\hamel\\Desktop\\z\\open.txt");

        getContentPane().setLayout(null);
        t1=new JTextField();
        t1.setBounds(30,26,47,28);
        getContentPane().add(t1);

        t2=new JTextField();
        t2.setBounds(103,26,47,28);
        getContentPane().add(t2);

        b1=new JButton("Click");
        b1.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {

                String w = t1.getText();
                String x = t2.getText();
                int i,j ,k;

                try{
                    PrintWriter pw = new PrintWriter(file2);
                    i = Integer.parseInt(w);

                    k = Integer.parseInt(x);
                    pw.println("You Enter in Text Field 1:"+i);

                    pw.println("You Enter in Text Field 2:"+k);
                    pw.close();
                }
                catch(Exception e){
                    JOptionPane.showMessageDialog(null, "Error");
                }
            }
        });

        b1.setBounds(235,26,87,28);
        getContentPane().add(b1);

        setSize(400,400);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setLocationRelativeTo(null);
        setVisible(true);   
    }

}

主:

public class Open_2 {
    public static void main(String[] args) {
        V next = new V();   
    }
}

1 个答案:

答案 0 :(得分:1)

第一个问题:

即使在GUI布局之前,您也在创建目录。因此它总是被创造出来。如果您不希望在发生异常时创建目录和文件,请将file1.mkdirs();移动到操作侦听器并将try块修改为类似的内容。

try {
    i = Integer.parseInt(w);
    k = Integer.parseInt(x);

    file1.mkdirs();
    File file2 = File.createTempFile("open", ".txt", file1);
    PrintWriter pw = new PrintWriter(file2);

    pw.println("You Enter in Text Field 1:"+i);

    pw.println("You Enter in Text Field 2:"+k);
    pw.close();
}

第二个问题:

如果您希望每次创建一个新文件,从名称open开始,但不一定是open1open2,依此类推,您可以使用

File file2 = File.createTempFile("open", ".txt", file1)命令之后

file1.mkdirs()

但请记住,createTempFile命令将生成一个以open开头并以.txt结尾的随机名称,但不一定是open1.txtopen2.txt等等。