Skip to content
Advertisement

Write a binary downloaded file to disk in Java

I have a software that allow to write add-on in javascript files (.js) that allow to use Java function (I don’t know if this is common, I never saw java call in javascript file before)

I need to download a binary file from a webserver and write it to the hard drive. I tried the following code:

JavaScript

The resulting file is no longer a valid gzip archive. I’m sorry if I did a huge error but I’m not a programmer and don’t know Java too much.

Advertisement

Answer

Don’t use a FileWriter – that’s trying to convert the data into text.

Just use FileOutputStream.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement