aspose file tools
The moose likes Websphere and the fly likes how to send console output to a html page Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Products » Websphere
Reply Bookmark "how to send console output to a html page" Watch "how to send console output to a html page" New topic
Author

how to send console output to a html page

Suresh Kumar Baddipudi
Greenhorn

Joined: Mar 09, 2009
Posts: 15
hi,
i wrote a java program, in that i used "System.out.println()" to print the output in the console. Now i want to print this output as a html page. Please help me regarding this issue. Thanks in advance.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35431
    
    9
What does this have to do with WebSphere (which this forum is all about)?

When you say HTML, do you mean you want to create a physical HTML file, or that this code should run in a servlet container and write an HTTP response?


Android appsImageJ pluginsJava web charts
Suresh Kumar Baddipudi
Greenhorn

Joined: Mar 09, 2009
Posts: 15
i need to create a physical HTML file only..
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35431
    
    9
Then you'd need to use the classes in the java.io package, particularly File, FileOutputStream, OutputStreamWriter and BufferedWriter. Be sure to pay attention to which encoding you're using, and to embed a META tag in the HTML file that specifies the encoding; it's probably best to use UTF-8.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: how to send console output to a html page
 
Similar Threads
Print the Applet Page using java script or Html
how to send console output to a html page
Clarification on init() method of HttpServlet
Printing HTML document
jboss sop's