java.io.PrintWriter.print(String s)方法實例
java.io.PrintWriter.print() 方法打印一個字符串。如果參數為null,則字符串“空”的字樣。否則,該字符串的字符轉換為字節按照平台的默認字符編碼,這些字節被寫在write(int)方法。
聲明
以下是java.io.PrintWriter.print()方法的聲明
public void print(String s)
參數
-
s -- 要被打印的字符串
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.print()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo { public static void main(String[] args) { String s = "Hello world."; try { // create a new writer PrintWriter pw = new PrintWriter(System.out); // print string pw.print(s); // change the line pw.println(); // print another string pw.print("This is an example."); // flush the writer pw.flush(); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello world. This is an example.