Difference between ?System.out.println?
and ?System.error.println??
Answer Posted / k.v.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.err.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 ? | 7 Yes | 6 No |
Post New Answer View All Answers
explain the difference between jdk and jvm?
Can a main method be overloaded?
What is difference between == and === in js?
What are structs in java?
what is synchronization? : Java thread
What is the intersection and union methods?
Is java ee a framework?
How do you define a set in java?
What is the difference between scrollbar and scrollpane?
What is core java used for?
Give reasons supporting that string is immutable.
Can string be considered as a keyword?
What is a variable in java?
What is the difference between processes and threads?
What do you understand by abstract classes?