Tagged Questions
5
votes
4answers
533 views
Usage of BufferedInputStream
Let me preface this post with a single caution. I am a total beginner when it comes to Java. I have been programming PHP on and off for a while, but I was ready to make a desktop application, so I ...
1
vote
3answers
3k views
Get FileNotFoundException when initialising FileInputStream with File object
I am trying to initialise a FileInputStream object using a File object. I am getting a FileNotFound error on the line
fis = new FileInputStream(file);
This is strange since I have opened this file ...
0
votes
2answers
235 views
Can calling available() for a BufferedInputStream lead me astray in this case?
I am reading in arbitrary size file in blocks of 1021 bytes, with a block size of <= 1021 bytes for the final block of the file. At the moment, I am doing this using a BufferedInputStream which is ...