vote up 2 vote down star
1

What is the single best pretty-printing library for Java? I mean a library for printing formatted output with indentation, break hints, etc., not a library for beautifying/re-formatting Java code itself. Ideally, the library would "play nice" with System.out.println and friends.

For an idea of what I'm looking for, see OCaml's Format module, particularly Format.fprintf.

[UPDATE] I am not looking for a console windowing library. A pretty-printing library allows you to define methods for formatting arbitrary values such that indentation is preserved and line breaks are chosen at sensible locations. Such libraries exist for Haskell, Standard ML, OCaml, F#, and Scheme. The XTC library provides some of this functionality in xtc.tree.Printer, but it is not nearly as flexible as the libraries in other languages.

flag

63% accept rate

3 Answers

vote up 1 vote down

Is it jpplib?

link|flag
vote up -1 vote down

Since you talk about boxes, break hints and so on I assume you mean to build a text-based windowing application. So I guess that you are looking for something similar to Ncurses but in Java. Maybe charva could help you.

link|flag
No, I'm no developing a curses application. I just want nice, formatted output, e.g., in debugging logs. I can't find any appropriate classes in charva. – Chris Conway Dec 2 '08 at 14:38
vote up -1 vote down

You may also try javacurses.

According to Dr. Dobb's Code Talk it is cute.

link|flag
That doesn't seem to do what I want. – Chris Conway Dec 2 '08 at 17:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.