View Single Post
  #4 (permalink)  
Old 12-06-2007, 02:30 AM
staykovmarin staykovmarin is offline
Senior Member
 
Join Date: Nov 2007
Location: Newport, WA
Posts: 141
staykovmarin is on a distinguished road
Code:
BufferedWriter wrt = new BufferedWriter(new FileWriter( "test/test2.txt")); wrt.append(phoneJTextField.getText()); wrt.close();
That should be in your ActionListener for the button you press.
Reply With Quote