any other way to print the text without using
System.out.println() in java?
Answers were Sorted based on User's Feedback
Answer / sathish
System.out.write("text".getBytes());
System.out.format("%s", "text");
Is This Answer Correct ? | 20 Yes | 1 No |
Answer / chitu
system.err prints the error, return statements with overrididing the toString method can print the statments
void toString()
{
return cn print this ;
}
Is This Answer Correct ? | 9 Yes | 10 No |
Answer / srinivas
Using PrintWriter class-
PrintWriter writer = new PrintWriter(System.out);
writer.println("Method 2");
PrintWriter makes the output internationalizable - because encodings like UTF-8 can be specified.
Is This Answer Correct ? | 0 Yes | 4 No |
Answer / hemanth
Yes of course. U can print text without using s.o.p by using static initialization block in Java
Is This Answer Correct ? | 5 Yes | 12 No |
Why java is a platform independent? Explain
Is delete, next, main, exit or null keyword in java?
What is the difference between variable & constant?
What is the need of "creating and throwing an UserdefinedException" when the "Exception" class is already available?
What is "finally" keyword?
Is a class an object?
os is developed in c no java is more secured then c na why dont the os developed is developed using java
Which method will get invoked first in a stand alone application?
What is the life-cycle of an object?
what is a green thread? : Java thread
How many digits can a float hold?
How to Sort list of Strings in ascending order without using java api.