java增量写
private void writeFile(String content){
BufferedOutputStream out = null;
try {
out = new BufferedOutputStream(new FileOutputStream("D:\\java\\log\\1.log",true));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
try {
out.write(content.getBytes());
out.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

浙公网安备 33010602011771号