I am currently attempting to modify some open source software in JSP and am unaware of the syntax.

How does one dump a complex variable to the browser using JSP?

link|improve this question
Perhaps you can use a debugger instead? – ChssPly76 Aug 6 '09 at 3:17
feedback

3 Answers

up vote 1 down vote accepted

For any variable and standard output, the variable class must implement the .toString() method. Then, you can send it to the renderized web page through the OutputStream in the HttpServletResponse object by using the <%= variable %>. For the java.lang classes it should be immediate.

For more complex classes, you need to implement the .toString() method:


class A {
   private int x;
   private int y;
   private int z;

   public A(int x, int y, int z) {
       this.x = x;
       this.y = y;
       this.z = z;
   }

   // XXX: this method...
   public String toString() {
       return "x = " + x + "; y = " + y + "; z = " + z;
   }
}

You must know that in JSP is no function/method such as *var_dump()* in PHP or Data::Dumper in Perl. In other case, you can send the output to the server stdout stream, by using System.out.println(), but isn't a recommendable way...

Another option is to implement a static method that outputs all members on a well formatted string by using Java Introspection, but is a known issue that is not recommendable to use Java Introspection in production environments.

link|improve this answer
That pretty much covers all the bases, I think. Good answer! – Shawn Grigson Aug 6 '09 at 3:31
feedback

I don't know that there's anything you can do aside from manually run through the variable's properties.

<p>Prop1: <%= var1.prop1 %></p>
<p>Prop2: <%= var1.prop2 %></p>
link|improve this answer
feedback
<% out.println(variable); %>
link|improve this answer
This relies on VariableClass having a toString() method that renders its state properly; otherwise you'll be getting back something like com.mypackage.VariableObject@35F0E3 – ChssPly76 Aug 6 '09 at 3:20
feedback

Your Answer

 
or
required, but never shown

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