/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Writes an byte array into a file. * @param data Data that should be written into a file. * @param filename The file, that should be used. * @throws IOException */ out.write(data); out.close(); }