Tagged Questions

3
votes
3answers
73 views

Is FileInputStream using buffers already?

When I am using FileInputStream to read an object (say a few bytes), does the underlying operation involve: 1) Reading a whole block of disk so that if I subsequently do another read operation, it ...
1
vote
4answers
2k views

Using Java's FileInputStream

In java.io.FileInputStream, there is a method int read(Byte[] buffer,int offset,int numBytes); how we can use this function - is there any difference between this method and read(byte[] buffer)?
0
votes
3answers
115 views

How to store bytes and read them back to an array

I am trying to store a list of numbers(bytes) into a file so that I can retrieve them into a byte[]. 59 20 60 21 61 22 62 23 63 24 64 25 65 26 66 27 67 28 68 29 67 30 66 31 65 32 64 33 63 34 62 35 ...
0
votes
1answer
57 views

How to deal with corrupted files that were created but IOException occured?

Could you please suggest how to deal with these situations ? I understand that in the second example, it is very rare that it would happen on unix, is it ? If access rights are alright. Also the file ...
0
votes
2answers
361 views

Increase Internal Buffer Size Used by Java FileInputStream

When calling read(byte[]) on a FileInputStream, the read size is always 8k, even if byte[] is exponentially large. How do you increase the max read amount returned per call? Please do not suggest a ...