[email protected] wrote:
> Is there a way to ask Jconsole to print the complete content of a J object ?
You can set the output control parameters using 9!:37 [1]. For example, on my
system:
9!:36 ‘'
0 256 0 222
J will truncate the display of any object wider than 256 chars or taller than
222 lines. To uncap that, I can issue:
9!:37 ] 0 _ 0 _
And of course I can change it back later if I like,
-Dan
[1] 9!:x, Global Parameters:
http://www.jsoftware.com/help/dictionary/dx009.htm
9!:36 y
9!:37 y Output Control.
A 4-element vector that controls session manager output:
end-of-line sequence 0 line feed; 2 carriage return line feed
maximum line length Output lines are truncated at this length
and “...” appended.
maximum line before If the total number of output lines exceeds
the sum of “maximum lines before” b and
“maximum lines after” a , then the first b
lines are output, followed by a line of “…”,
followed by the last a lines.
maximum line after See above.
The defaults for output controls are 0 256 0 222 .
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm