博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IO流写出到本地 D盘demoIO.txt 文本中
阅读量:5075 次
发布时间:2019-06-12

本文共 706 字,大约阅读时间需要 2 分钟。

1.

public class Hello {    private static final  String LINE_SEPARATOR = System.getProperty("line.separator");//换行    public static void main(String[] args) throws Exception {        FileWriter writer = null;        try{            writer = new FileWriter("d:\\demoIO.txt");            writer.write("abcdedd"+LINE_SEPARATOR+"HELLOWORLD");        }catch (Exception e){            System.out.println(e.toString());        }finally {            if (writer != null){                try{                    writer.close();                }catch (Exception e){                    throw new RuntimeException("关闭失败");                }            }        }    }

转载于:https://www.cnblogs.com/bravolove/p/5810796.html

你可能感兴趣的文章
Generate BKS File( Bouncy Castle KeyStore)
查看>>
obdg反汇编破解crackme
查看>>
Python作业1 登录程序
查看>>
js弹出模态与非模态页面
查看>>
POJ - 3090 gcd水题
查看>>
第四讲 深入介绍信号与槽
查看>>
.gitignore梳理
查看>>
Lucene/Solr搜索引擎开发笔记 - 写作方向调整
查看>>
JavaScript 数据类型小结
查看>>
-webkit-overflow-scrolling:touch iosBug
查看>>
HDU2028:Lowest Common Multiple Plus
查看>>
辞树的QAQ水题(字符串统计,思维)
查看>>
python自动化之路 day5-1 paramiko模块
查看>>
安全证书的问题
查看>>
习题3.4 最长连续递增子序列(20 分)浙大版《数据结构(第2版)》题目集
查看>>
Browser
查看>>
virtualbox主机与虚拟机之间互相通信教程
查看>>
NotificationManager和Notification的使用总结
查看>>
Linux系统上安装JDK1.8
查看>>
iOS 复杂tableView的 cell一般设计思路
查看>>