打印流
阿新 • • 發佈:2018-10-01
print ioe exce ati exc lan sep doc 格式化輸出
打印流
/**
* 使用PrintStream進行輸出
* */
import java.io.*;
class hello {
public static void main(String[] args) throws IOException {
PrintStream print = new PrintStream(new FileOutputStream(new File("d:"
+ File.separator + "hello.txt")));
print.println(true);
print.println("Rollen");
print.close();
}
}
【運行結果】:
true
Rollen
當然也可以格式化輸出
/**
* 使用PrintStream進行輸出
* 並進行格式化
* */
import java.io.*;
class hello {
public static void main(String[] args) throws IOException {
PrintStream print = new PrintStream(new FileOutputStream(new File("d:"
+ File.separator + "hello.txt")));
String name="Rollen";
int age=20;
print.printf("姓名:%s. 年齡:%d.",name,age);
print.close();
}
}
【運行結果】:
姓名:Rollen. 年齡:20.
打印流