I am getting a a InputStream from getResourceAsStream(), and I managed to read from the file by passing the returned InputStream to a BufferedReader.
Is there any way I can write to the file as well?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not directly, no –
getResourceAsStream()is intended to return a view on read-only resources.If you know that the resource is a writeable file, though, you can jump through some hoops, e.g.
This should work nicely on unix-style systems, but windows file paths might give this indigestion. Try it and find out, though, you might be OK.