import java.io.*;

public class FileWriterDemo {
	
	public FileWriterDemo(String source){
		char buffer[] = new char[source.length()];
		source.getChars(0, source.length(), buffer, 0);
		try {
			FileWriter f0 = new FileWriter("C:/Documents and Settings/Administrator/Desktop/Cours 2/Semestre 1/Eclipse/TP7/cookie.bin");
			f0.write(buffer);
			f0.close();
		} catch (IOException e) {
			//e.printStackTrace();
			System.out.println(e);
		}
	}
}