A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© abc张强8 中级黑马   /  2014-7-2 22:10  /  561 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. [code]import java.io.File;
  2. import java.io.FileNotFoundException;
  3. import java.io.PrintWriter;
  4. import java.util.Scanner;

  5. public class DeleteKeyX {

  6.         /**
  7.         * @param args
  8.         * @throws FileNotFoundException
  9.         */
  10.         public static void main(String[] args) throws FileNotFoundException {
  11.                
  12.                 if(args.length!=2){
  13.                         System.out.println("Usage:java DeleteKeyX keyX fileName");
  14.                         System.exit(0);
  15.                 }
  16.                 File fileName=new File(args[1]);
  17.                 if(!fileName.exists()){
  18.                         System.out.println("file"+args[1]+"does not exist");
  19.                         System.exit(0);
  20.                 }
  21.                
  22.                 Scanner input=new Scanner(fileName);
  23.                 PrintWriter output=new PrintWriter(fileName);

  24.                 while(input.hasNext()){
  25.                         String s=input.nextLine();
  26.                         String s1=s.replaceAll(args[0], "");
  27.                         output.println(s1);
  28.                 }
  29.                
  30.                 input.close();
  31.                 output.close();
  32.                
  33.                 }
  34.                 // TODO Auto-generated method stub


复制代码
[/code]

1 个回复

倒序浏览
你先在最上面输出args[0],就知道了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马