Difference between ?System.out.println?
and ?System.error.println??
Answer Posted / subrahmnyareddy
We can redirect System.out to another file but we cannot
redirect System.err stream.
ex:
public class TestSystOutAndErr
{
public static void main(String[] args)
{
System.out.println("system.out.message");
System.out.println("system.err.message");
}
}
compile:
>javac TestSystOutAndErr.java
execute:(first time)
>java TestSystOutAndErr
OutPut:
system.out.message
system.err.message
execute:(second time)
>java TestSystOutAndErr > samp.txt
output:
system.err.message
(In the above execution "system.out.message" redirected in
to samp.txt file but "system.err.message" not redirected
into samp.txt file)
request:
hi,
I'm M.C.A studet if there is an wrong plz excuse me.
tnaq
Is This Answer Correct ? | 13 Yes | 8 No |
Post New Answer View All Answers
What is the static block?
Is java platform independent?
What about anonymous inner classes in java?
List implementations of list interface?
What are thread priorities and importance of thread priorities in java?
How much is a java license?
Can a static block throw exception?
How can you say java is object oriented?
Can you add null to a list java?
What is void data type?
Which are the two subclasses under exception class?
What is difference between core java and java ee?
What is class variable java?
What is string and its types?
Explain methods specific to list interface?