java.io.Writer.write(int c)方法實例
java.io.Writer.write(int c) 方法寫入單個字符。要寫入的字符被包含在給定整數值的低16位; 16個高序位被忽略。
聲明
以下是java.io.Writer.write()方法的聲明
public void write(int c)
參數
-
c -- int,指定一個寫入的字符
返回值
此方法冇有返回值
異常
-
IOException -- 如果發生I/ O錯誤
例子
下麵的示例演示java.io.Writer.write()方法的用法。
package com.yiibai; import java.io.*; public class WriterDemo { public static void main(String[] args) { int c = 70; // create a new writer Writer writer = new PrintWriter(System.out); try { // write an int that will be printed as ASCII writer.write(c); // flush the writer writer.flush(); // write another int that will be printed as ASCII writer.write(71); // flush the stream again writer.flush(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
FG