Java.io.PrintWriter.print() Method



Description

The java.io.PrintWriter.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.PrintWriter.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.PrintWriter.print() method.

package com.tutorialspoint;

import java.io.*;

public class PrintWriterDemo {
   public static void main(String[] args) {
      long i = 4854587375487354l;

      // create a new writer
      PrintWriter pw = new PrintWriter(System.out);

      // print long
      pw.print(i);

      // change the line
      pw.println();

      // print another long
      pw.print(12315436474l);

      // flush the writer
      pw.flush();
   }
}

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

4854587375487354
12315436474
java_io_printwriter.htm
Advertisements