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.
FileOutputStream file = new FileOutputStream("log.txt");
for (int i = 0; i < bytes.length; i++)
file.write(bytes[i]);
file.close();
try {
PrintStream out =
new PrintStream(
new BufferedOutputStream(
new FileOutputStream("errorlog.txt")));
System.setErr(out);
System.err.println("testing 1 2 3");
out.close();
} catch (IOException e){
e.printStackTrace();
}