Here you can find the source of stackTraceToString(Throwable eIn)
Parameter | Description |
---|---|
eIn | the exception producing the stack trace |
public static String stackTraceToString(Throwable eIn)
//package com.java2s; /**/* w w w. ja v a 2 s . c o m*/ * Copyright 2013 opencxa.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.io.PrintWriter; import java.io.StringWriter; public class Main { private static int MAX_NUM_STACK_TRACE_ENTRIES = 5; /** * This is a convenience function for printing the content of * a stack track to a String * * @param eIn the exception producing the stack trace * * @return a string containing the stack trace (similar to {@link Exception#printStackTrace()}) */ public static String stackTraceToString(Throwable eIn) { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); for (int i = 0; i < MAX_NUM_STACK_TRACE_ENTRIES; i++) { StackTraceElement currElem = eIn.getStackTrace()[i]; pw.println(currElem.toString()); } return sw.toString(); } }