java中讲讲PrintWriter的用法,举例?

2019-09-23 09:22:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java中讲讲PrintWriter的用法,举例?

1.2 PrintWriter的用法

PrintWriter和PrintStream类似,只不过PrintStream是针对字节流的,而PrintWriter是针对字符流的。

例: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();
}
}

文章转载自原文:https://blog.csdn.net/mark_to_win/article/details/71023774


原文链接:https://www.cnblogs.com/renzhe111/p/11572740.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringMVC请求参数总结

下一篇:anroidStudio gradle版本和android插件的版本依赖