Is there a way to configure eclipse to open console apps in a new window rather than it’s own console when you run/debug them? I’m debugging a client/server application and I’d like to see the output of both apps at once and not have to switch between the tabs… Answer In eclipse, you c…
Tag: debugging
How can I display a byte array as a String in java’s debug detail formatter?
I’d like to write a simple detail formatter that displays byte[] data in the form of a String (using String.<init>([B) to do the dirty work). However, I’m not sure how to find the class name for [B to use when creating the formatter. Is this even possible? Or, alternatively, is there another…