Java PrintWriter write()方法
java.io.PrintWriter.write(String s) 方法写入的字符串。
1 语法
public void write(String s)
2 参数
s:要写入的字符串。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.write(String s)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello";
try {
// create a new writer
PrintWriter pw = new PrintWriter(System.out);
// write strings
pw.write(s);
pw.write(" World");
// flush the writer
pw.flush();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
输出结果为:
Hello World
热门文章
优秀文章