top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How can I display console logs on JSP / HTML pages ?

+1 vote
482 views
How can I display console logs on JSP / HTML pages ?
posted Jan 31, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

We can set system output to response output -
System.setOut(new PrintStream (response.getOutputStream));

answer Feb 1, 2015 by Garima Gupta
...