本帖最后由 宋旭东 于 2013-7-4 22:03 编辑
- public class IO {
- public static void main(String[] args) throws IOException {
- try {
- Properties properties = System.getProperties();
- properties.list(new PrintStream("a.txt")); //记录系统信息
- int[] A = new int[2];
- int a = A[3]; //产生越界异常
- } catch (Exception e) {
- e.printStackTrace(new PrintStream("a.txt"));//记录异常信息
- }
- }
- }
e.printStackTrace(new PrintStream("a.txt"));//记录异常信息 会覆盖系统记录的信息
怎么能让异常信息加在系统信息之后呢
如何让PrintStream在已经存在的文件后面加些输出?
|
|