Java 实现替换文本某处

1.背景介绍

   有时候在实际开发的过程需要只替换整个文件的某处,我这里实现的方法是替换内容输出另一个新文件。

 2.需要的依赖

 <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.8.0.M2</version>
        </dependency>

3.代码实现


//sourcePath 要替换的文件路径  newPath 生成的新文件路径
public static void repale(String sourcePath,String newPath){
        File file = new File(sourcePath);
        String s1="要替换的字符串";
        String s2="新的字符串";
        List<String> strings = FileUtil.readLines(file, CharsetUtil.CHARSET_UTF_8);
        List<String>  contonts=new ArrayList<>();
        for (String s : strings) {
            if (s1.equals(s.trim())){
            contonts.add(s2);
            }else {
                contonts.add(s);
            }
        }
        FileUtil.writeLines(contonts,newPath,CharsetUtil.CHARSET_UTF_8);
    }


//方法测试
 public static void main(String[] args) {

        String path="C:\\Users\\Administrator\\Desktop\\maoming\\area\\test.text";
        String path1="C:\\Users\\Administrator\\Desktop\\maoming\\area\\test1.text";
         repale(path,path1):

        
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值