Kattare Internet Hosting Home | Home | Services | Contact Us | Order Online! |   whitespace image
  Kattare I/S: View FAQ Answer

| Webmail | Forums | News | FAQ | Members Login |  

whitespace image
tail end of the Kattare logo Toll Free: (866) KATTARE -or- (877) KATTARE
Local: (541) 753-1079
keyboard image for php hosting, jsp hosting, servlet hosting, java hosting website
Better Business Bureau Online  
whitespace image

   

whitespace image
greenspace image for php hosting, jsp hosting, servlet hosting, java hosting website

Home

Hosting Services

Server Co-Location
Dedicated Server
Java Servlet Hosting
Website Hosting
WHOIS Lookup
Join Us Today!

Members

Member Forums
Documentation
Kattare F.A.Q.
Free Software
Members Section
News
Referral System
Spam Blocking
Webmail

Development

Programming
Website Design
Graphic Design

Company

About Us
Contact Us
Our Network
Page Us
Sites We Host
Terms of Service


whitespace image
Documentation

Kattare is dedicated to making your hosting experience as painless as possible. That means making as much help and documentation available as possible.

Quick Links
[Frequently Asked Questions]
[User Forums]
[Howto's]
Category
JSP-Java Servlets
Question

Last Modified: May 02, 2005

Can I output my Java debug information to a file?
Answer
Yes.

This information is from devx.com, original link: http://www.devx.com/tips/Tip/5616

--------------------------------------------------------------------
A crude but common way of debugging Java programs is to use the public System.out and/or System.err instances of PrintStream to display information:

System.out.println("Entering section A of my code");

One drawback to this method is that if the information is sent to a display (usually the default), it may scroll off the screen before you're able to view the message. Also, you may wish to have the messages stored in a more permanent way. You can accomplish this by redirecting the output to some place such as a printer or a local disk file using the System.setErr() and System.setOut() static methods. For example, this code will cause error messages to be stored in a disk file:

FileOutputStream fos = new FileOutputStream("errors.txt");
PrintStream ps = new PrintStream(fos);
System.setErr(ps);

You should note, however, that the PrintStream class is deprecated, and as a result, its use will trigger a deprecation warning when compiled.

[FAQ Main] [Submit a Question]

[Back to Category "JSP-Java Servlets"]


whitespace image
green spacer Kattare Logo whitespace image
 
whitespace image
whitespace image