this.Lottery1 = Lottery1;
this.id = id;
this.dir = dir + "TMP/";
}
public void write(){
ResultJson[] rjs = new ResultJson[] {new ResultJson(Lottery0), new ResultJson(Lottery1)};
Gson gson = new Gson();
String json_lott = gson.toJson(rjs);
File file = new File(this.dir + "nextround_"+id+".json");
PrintWriter printWriter;
try {