博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java写入换行符
阅读量:6588 次
发布时间:2019-06-24

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

写入一个文件,生成文本文档,里面写入1000行字符,但是写出来的没有换行。所以纠结,百度了下,一行完事。

String crlf=System.getProperty("line.separator");

具体如下:

package action;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;public class MyIos {    /**     * @param args     * @throws FileNotFoundException      */    public static void main(String[] args) throws FileNotFoundException {        // TODO Auto-generated method stub        String pathname="d:/myios.txt";        File file=new File(pathname);        FileOutputStream fop=new FileOutputStream(file);        String crlf=System.getProperty("line.separator");        try{            if (!file.exists()) {                file.createNewFile();            }                        for(int i=0;i<10000;i++){                String content=i+",hello everyone "+crlf; //直接添加换行的即可                byte[] contents=content.getBytes();                fop.write(contents);                }                        String endString="done";            byte[] ends=endString.getBytes();            fop.write(ends);            fop.flush();            fop.close();                    } catch (Exception e) {            // TODO: handle exception        }    }}

 

转载于:https://www.cnblogs.com/juepei/p/3668742.html

你可能感兴趣的文章
微信硬件平台对接--蓝牙
查看>>
spring data for mongo
查看>>
开启 URL 重写
查看>>
Journey源码分析二:整体启动流程
查看>>
Shell特殊变量:Shell $0, $#, $*, $@, $?, $$和命令行参数
查看>>
七、MySQL中的字符集 - 系统的撸一遍MySQL
查看>>
centos7的php5.4竟然不支持原生的mysql
查看>>
使用IntelliJ IDEA开发SpringMVC网站(四)用户管理
查看>>
Maven依赖Scope标签用法
查看>>
堆排序的原理
查看>>
ajax加载数据到页面无法打印的解决办法
查看>>
js 验证中文
查看>>
MySQL给查询结果添加一表表示行号或名次(1)
查看>>
Linux下运行java DES AES加解密
查看>>
DataNode 运行状况
查看>>
牛津词典 2018 年度词汇 ——「有毒」!
查看>>
XIB的是用
查看>>
Learning Data Structure_2_线性表、栈和队列
查看>>
驱动外置+原版安装方式『XLOS_Windows8_Pro_X86纯净版_V1.0』
查看>>
Oracle创建表语句(Create table)语法详解及示例
查看>>