java、groovy读写文件比较

本文介绍了一种使用Java和Groovy读取文件并批量替换指定字符串的方法。在Java部分,通过BufferedInputStream读取文件内容,并将特定端口号替换为新的端口号;在Groovy部分,则是从配置文件中读取Tomcat路径。
摘要由CSDN通过智能技术生成

java:


 java.io.File a=new java.io.File(str1);
        
        try{
               BufferedInputStream bin = new BufferedInputStream(new FileInputStream(a));
               byte[] buff = new byte[(int)a.length()];
               bin.read(buff);
               FileOutputStream fout = new FileOutputStream(a);
               String str = new String(buff);
               String[] lines = str.split("\n");
               String line_changed="";
               for(String line : lines){
                line_changed = line.replaceAll("8005",port1);
                line_changed = line_changed.replaceAll("8080",port);
                line_changed = line_changed.replaceAll("8009",port2);
                fout.write((line_changed+"\n").getBytes());
               }
               fout.flush();
               fout.close();
               bin.close();
              }catch(FileNotFoundException ex){
               ex.printStackTrace();
              }catch(IOException ioe){
               ioe.printStackTrace();
              }


groovy:


private def readtomcatpath={
              new java.io.File("/opt/tomcatpath.config").eachLine{line->
                  tomcatpath="${line}".substring(11)
              }
      }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值