I'm just experiencing JSP form Java, I'm using a Java *.java class, within this class there's a method that print a String System.out.println("Message");, I call this method from index.jsp, the message "Message" appears on the console of the server but not in the index.jsp because System.out.println(); won't work on a jsp file.
Edit: The question is obvious how to send and show this message in my index.jsp?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
In a JSP, you have an implicit Additionaly, inside the HTML you can use <%= "Message" %> (or <% myMessage.toString() %> to the same effect UPDATE: Either you are in the JSP (or servlet) or you are not. The object that receives the stream to write the HTML is a servlet* (explicit or being compiled from JSP). If you can write from some other class, you need to pass the Be careful not to pass it to your bussiness logic class, these should be UI agnostic (i.e. they do not have to know that the UI is HTML); it would be bad practice as it would mix internal classes with external output. |
|||||||||||||
|