Java.io.PrintStream.print() Method



Description

The java.io.PrintStream.print() method prints a long integer. The string produced by String.valueOf(long) is translated into bytes according to the platform's default character encoding, and these bytes are written in exactly the manner of the write(int) method.

Declaration

Following is the declaration for java.io.PrintStream.print() method.

public void print(long l)

Parameters

l − The long to be printed.

Return Value

This method does not return a value.

Exception

NA

Example

The following example shows the usage of java.io.PrintStream.print() method.

package com.tutorialspoint;

import java.io.*;

public class PrintStreamDemo {
   public static void main(String[] args) {
      long x = 50000000000l;
      
      try {
         // create printstream object
         PrintStream ps = new PrintStream(System.out);

         // print long
         ps.print(x);

         // flush the stream
         ps.flush();

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

Let us compile and run the above program, this will produce the following result −

50000000000
java_io_printstream.htm
Advertisements