Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How could Java classes direct program messages to the
system console, but error messages, say to a file?

Answer Posted / munna

import java.io.*;
class Err
{
public static void main(String[] args) throws Exception
{
PrintStream ps=new PrintStream(new
FileOutputStream("output.txt"));
System.setErr(ps);
System.setOut(ps);
System.out.println("fdffdfdffffff........");
}
}

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is r in java?

1004


How to access arraylist elements in java?

948


How do you define a parameter?

991


Which api is provided by java for operations on set of objects?

1409


What kind of variables can a class consist?

1003


What is the difference between the paint() and repaint() methods?

1017


How do you remove an element from an arraylist in java?

953


Where are variables stored?

923


Can you explain the final method modifier?

966


Can we call virtual funciton in a constructor ?

2142


What are the differences between graph and tree?

1072


Give example to differentiate between call by value and call by reference.

983


What do you understand by the term polymorphism?

1012


What is the exact difference in between unicast and multicast object? Where we will use?

945


What are the differences between string, stringbuffer and stringbuilder?

974