I want to print any text without using system.out.println() in java? It is possible If yes then how; Any idea.
System.out
in a PrintStream
which is a kind of OutputStream
. You can send raw bytes on that stream, if you wish it so. This is not recommended, because how raw bytes are handled depends on the host system and its configuration (the dreadful "locale" business). The print()
and println()
methods do "the right thing" for you.