String filename=null;
JFileChooser chooser = new JFileChooser();
chooser.setAcceptAllFileFilterUsed(false);
chooser.addChoosableFileFilter(new txt_file_filter());
int option = chooser.showSaveDialog(scratch_padTopComponent.this);
if (option == JFileChooser.APPROVE_OPTION) {
FileOutputStream fl = null;
{