好的,我要做的是使用按钮从一个 .text 文件读取到另一个文本文件。所以它是事件驱动的,但我必须反转输出。
我在 netbeans 中编码,因为我是新手,它很有帮助。
我已经为此工作了几天,试图在网络上找到明确的信息,但我遇到了困难,现在我认为我的代码看起来比我开始时更糟糕,所以请指出我做错的原因。
非常感谢您提供的任何建议。
这是我的按钮。
private void ReadButtonActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
int x ;
Vector<String> readOrder = new Vector<String>();
try {
Scanner i = new Scanner(new FileReader("Out.txt"));
while( i.hasNextInt()){
x = i.nextInt();
readOrder.add(new Integer(x));
}
try {
try (BufferedWriter out = new BufferedWriter(new FileWriter("Outfile.txt")));
out.append(" " + x);
out.close();
}
i.close();
}
catch (Exception e ){}
for(int i = readOrder.size()-1 ; i >= 0 ; i-- )
System.out.println( readOrder.elementAt( i ).intValue() );
}