any other way to print the text without using
System.out.println() in java?

Answers were Sorted based on User's Feedback



any other way to print the text without using System.out.println() in java?..

Answer / sathish

System.out.write("text".getBytes());

System.out.format("%s", "text");

Is This Answer Correct ?    20 Yes 1 No

any other way to print the text without using System.out.println() in java?..

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

any other way to print the text without using System.out.println() in java?..

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

any other way to print the text without using System.out.println() in java?..

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

any other way to print the text without using System.out.println() in java?..

Answer / ravi ranjan

int a=10;

System.out.printf("%d",+a);

Is This Answer Correct ?    2 Yes 9 No

Post New Answer

More Core Java Interview Questions

Why do we declare a class static?

0 Answers  


What is the structure of java?

0 Answers  


What is the old name of java?

0 Answers  


What does the ‘static’ keyword mean? Is it possible to override private or static method in java?

0 Answers  


What is java util function?

0 Answers  






What is the memory leak in java?

0 Answers  


What are different types of classloaders?

0 Answers  


which method is used to know the status of the Thread?

9 Answers   Honeywell,


What does 0 mean in boolean?

0 Answers  


Can we override final method?

0 Answers  


In how many ways we can create threads in java?

0 Answers  


In the below example, what will be the output?

0 Answers  


Categories