Java.io.PrintWriter.print() 方法

  • 描述

    Java.io.PrintWriter.print() 方法打印的对象。根据平台的默认字符编码,将String.valueOf(Object)方法产生的字符串转换为字节,然后以write(int)方法的方式完全写入这些字节。
  • 声明

    以下是protected void print()方法的声明。
     public void print(Object obj)
  • 参数

    obj-要打印的对象。
  • 返回值

    此方法不返回值。
  • 异常

    不适用。
  • 例子

    以下示例显示java.io.PrintWriter.print()方法的用法。
     
    package com.jc2182;
    
    import java.io.*;
    import java.util.Date;
    
    public class PrintWriterDemo {
       public static void main(String[] args) {
          Object obj1 = "Object";
          Object obj2 = 2;
          Date date = new Date(112, 2, 21);
          
          try {
             // create a new writer
             PrintWriter pw = new PrintWriter(System.out);
    
             // print object
             pw.print(obj1);
    
             // change the line
             pw.println();
    
             // print another object
             pw.print(obj2);
    
             // change the line
             pw.println();
    
             // print a date (it is an object)
             pw.print(date);
    
             // flush the writer
             pw.flush();
          } catch (Exception ex) {
             ex.printStackTrace();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    Object
    2
    Wed Mar 21 00:00:00 EET 2012