欢迎大家来到IT世界,在知识的湖畔探索吧!
PrintWriter的用法
马克-to-win:PrintWriter和PrintStream类似,只不过PrintStream是针对字节流的,而PrintWriter是针对字符流的。
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
例:1.2.1
import java.io.*;
public class TestMark_to_win {
public static void main(String args[]) throws Exception {
String s1 = “我们” + “\n”;
String s2 = “你们” + “\n”;
PrintWriter p = new PrintWriter(“c:/out.txt”);
p.println(“output” + s1);
p.println(“output” + s2);
/*without using the following statement, the file name can be write out, but the content of the file is empty. */
p.close();
}
}
篇幅有限更多请见扩展链接:http://www.mark-to-win.com/tutorial/java_8_UsageOfPrintWriter.html
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/30344.html