import java.io.*;public class temp
{
   public static void main(String args[]) throws IOException
     {
       BufferedReader buf;
       String str;
       System.out.println("please input the String to write!");
       buf=new BufferedReader(new InputStreamReader(System.in));
       str=buf.readLine();
       
       FileWriter fw=new FileWriter("c:\\temp.txt");
       fw.write(str);
       fw.close();
     }
}