博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Java】向*.txt文档里面重复添加同一个字符串
阅读量:5089 次
发布时间:2019-06-13

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

闺蜜说让我用代码写五万个对不起给她~~

import java.io.FileWriter;import java.io.IOException;/** * Created by lenovo on 2017/1/22. * 1.常量字符串"对不起" * 2.循环判定条件,五万字,使用count计数 * 3.创建文本文件并写入 */public class SorryForHui{    public static void WriteToFile(String str , String url)    {        int count = 0;        try        {            FileWriter writer = new FileWriter(url,true);            while(count<50000){                writer.write(str);                count++;            }            writer.close();        }catch(IOException e)        {            e.printStackTrace();        }    }    public static void main(String[] args)    {        String sorry = "傻慧慧,我错啦~";        String url = "G:\\sorry.txt";        WriteToFile(sorry , url);    }}

转载于:https://www.cnblogs.com/bolumiere/p/6387695.html

你可能感兴趣的文章
nodejs fs路径
查看>>
javascript之数组操作
查看>>
TF-IDF原理
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>
Eclipse 安装SVN插件
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>