I want to write a string into the beginning of a file, How do I do that?
I don't know how to add a string at all.. This is what I did so far:
public static void prepend (String filename, String data) throws IOException{
FileOutputStream file= new FileOutputStream(filename);
}
(i) The write() method accepts only bytes- What should I do in order to use it in my case?
(ii)-How do I copy the string to the beginning of the file?
And- If someone knows about a web-site that has all the Writers\Readers and all these streams arranged and well explained- I will really appreciate it, I'm losing my mind.
Thanks!
