With Java:
I have a byte[] that represents a file.
How do I write this to a file (ie. C:\myfile.pdf)
I know it's done with InputStream, but I can't seem to work it out.
|
With Java: I have a How do I write this to a file (ie. I know it's done with InputStream, but I can't seem to work it out. |
|||||||||
|
|
Use [Apache Commons IO][1]. Or, if you insist on making work for yourself...
[1]: http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html#writeByteArrayToFile(java.io.File, byte[]) |
|||||||||||
|
|
Basic example:
|
|||
|
|
Actually, you'd be writing to a file output... |
|||
|
|