File Input Output Java

import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.DecimalFormat;
public class HTMLDemo {
  public static void main(String[] a) throws IOException {
    PrintWriter pw = new PrintWriter(new FileWriter("test.html"));
    DecimalFormat ff = new DecimalFormat("#0"), cf = new DecimalFormat(
        "0.0");
    pw.println("FahrenheitCelsius");
    for (double f = 100; f <= 400; f += 10) {
      double c = 5 * (f - 32) / 9;
      pw.println("" + ff.format(f) + ""
          + cf.format(c));
    }
    pw.println("");
    pw.close(); // Without this, the output file may be empty
  }
}