import the IO package in ur file like
import java.IO.*
try{
PrintWriter out = new PrintWriter(new FileWriter("temp.txt"));
// Write text to file
out.println(textField.getText());
out.close();
}catch(IOException ex){
new ExceptionHandler("Error while writing to temp.txt file",ex);
}
enjoy...