Hi,
Take a look at the apache commons
http://jakarta.apache.org/commons/
I use the "org.apache.commons.io.FileUtils"
It's very easy.
-----------
String2File
-----------
FileUtils.writeStringToFile("filename.txt","my content","UTF-8");
-----------
File2String
-----------
String content =...