Here you can find the source of writeStringToFile(String stringToWrite, String filename)
public static void writeStringToFile(String stringToWrite, String filename) throws IOException
//package com.java2s; import java.io.*; public class Main { public static void writeStringToFile(String stringToWrite, String filename) throws IOException { OutputStream os = new FileOutputStream(filename); os.write(stringToWrite.getBytes()); os.close();// w ww. j a v a2 s.c om } }