Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
File file = new File("somefile");
FileInputStream fis = new FileInputStream(file));
byte[] buffer = new byte[(int)file.size()];
fis.read(buffer, 0, buffer.length);
OutputStream os = response.getOutputStream();
out.write(buffer);
out.flush();