Here you can find the source of saveStringToPath(String stringToSave, String pathToSaveTo)
public static void saveStringToPath(String stringToSave, String pathToSaveTo)
//package com.java2s; //License from project: Creative Commons License import java.io.*; public class Main { public static void saveStringToPath(String stringToSave, String pathToSaveTo) { try {/*from ww w. j av a2s.co m*/ OutputStreamWriter oos = new OutputStreamWriter(new FileOutputStream(pathToSaveTo)); oos.write(stringToSave); oos.close(); } catch (IOException e) { e.printStackTrace(); } } }