Kuesioner Java Sederhana Menggunakan JSON

string jsonData = "{}";
  FileWriter output = new FileWriter("answer.json");
  // Writes the string to the file
  output.write(jsonData);

  // Closes the writer
  output.close();
SAMER SAEID