Here you can find the source of printStackTrace(PrintStream out)
public static final void printStackTrace(PrintStream out)
//package com.java2s; /*//from w ww .j a va 2 s .com * EuroCarbDB, a framework for carbohydrate bioinformatics * * Copyright (c) 2006-2009, Eurocarb project, or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * A copy of this license accompanies this distribution in the file LICENSE.txt. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * Last commit: $Rev: 1147 $ by $Author: glycoslave $ on $Date:: 2009-06-04 #$ */ import java.io.PrintStream; public class Main { /** * This is for debugging use only - prints a snapshot of the current * stack trace to the given {@link PrintStream}. */ public static final void printStackTrace(PrintStream out) { try { throw new RuntimeException(); } catch (RuntimeException dummy) { StackTraceElement[] stack = dummy.getStackTrace(); out.println("CURRENT STACK SNAPSHOT (depth=" + stack.length + " frames)"); for (int i = 1; i < stack.length; i++) { out.println(" -> method " + stack[i - 1].getMethodName() + " in " + stack[i].getFileName() + ", line " + stack[i].getLineNumber()); } } } }