I\'m getting some documents from the web and many of them are binary files (executables, PDF, etc.). In Java, what is the correct type to hold the binary data until save it in d
An array of bytes
byte
byte[]
Which is why you see it being used in FileInputStream