Java: Most efficient way to convert an throwable/exception's entire stack trace into a ByteBuffer?

StackOverflow https://stackoverflow.com/questions/12499033

質問

What is the most efficient method to convert an throwable/exception's entire stack trace into a ByteBuffer (in Java)?

Specifically, I need to log the entire exception into the database. The Thread.currentThread().getStackTrace() returns a list of StackTraceElement[] array.

Then, there is a printStackTrace() method in Throwable class?

役に立ちましたか?

解決

If you really want to do that, this should be what you need:

ByteArrayOutputStream os = new ByteArrayOutputStream();
ex.printStackTrace(new PrintStream(os));
ByteBuffer bb = ByteBuffer.wrap(os.toByteArray());

他のヒント

You can use ExceptionUtils class in apache commons.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top