Here is sample code for that:
static{
try {
PrintStream obj_ps = new PrintStream(new FileOutputStream("internal.log"));
System.setOut(obj_ps);
System.setErr(obj_ps);
}
catch (FileNotFoundException ex) {
JOptionPane.showMessageDialog(null, "Error creating log file", "Error", JOptionPane.ERROR_MESSAGE);
}
}