Код: Выделить всё
but6.addActionListener(new ActionListener(){
public void actionPerformed (ActionEvent event){
JFileChooser myChoos = new JFileChooser();
myChoos.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
int res = myChoos.showDialog(null, "Дописать");
if (res == JFileChooser.APPROVE_OPTION){
file2 = myChoos.getSelectedFile();
String str2 = field2.getText();
try{
FileWriter f = new FileWriter(file2, true);
PrintWriter out = new PrintWriter(f);
out.println(str2);
out.close();
}
catch(IOException e){}
}
}});