PrintWriter.print(long l) has the following syntax.
public void print(long l)
In the following code shows how to use PrintWriter.print(long l) method.
// w ww . j a va2 s . c o m import java.io.*; public class Main { public static void main(String[] args) { long i = 1234567890L; PrintWriter pw = new PrintWriter(System.out); // print long pw.print(i); // print another long pw.print(987654321L); // flush the writer pw.flush(); } }
The code above generates the following result.