package org.occiware.clouddesigner.occi.simulation.cloudsim.core; import java.io.File; import java.io.FileWriter; import java.io.IOException; /** * @author Anup * */ public class PrintFile { public static String file_name = ""; public static void AddtoFile(String msg) { try { java.util.Date d = new java.util.Date(); if (file_name == "") { file_name = "C:\\Users\\Mehdi\\Dropbox\\CloudSimDemo" + d.getTime() + ".txt"; } File file = new File(file_name); // if file doesnt exists, then create it if (!file.exists()) { file.createNewFile(); } FileWriter fw = new FileWriter(file.getAbsoluteFile(), true); String text = System.lineSeparator() + msg.replace("\n", System.lineSeparator()); fw.write(text); fw.close(); } catch (IOException e) { e.printStackTrace(); } } }