打字猴:1.700481452e+09
1700481452
1700481453 public final static String DIVIDE_FLAG=””;
1700481454
1700481455 //定义参数前的符号,UNIX一般是-,如ls-la
1700481456
1700481457 public final static String PREFIX=”-“;
1700481458
1700481459 //命令名,如ls、du
1700481460
1700481461 private String commandName=””;
1700481462
1700481463 //参数列表
1700481464
1700481465 private ArrayList<String>paramList=new ArrayList<String>();
1700481466
1700481467 //操作数列表
1700481468
1700481469 private ArrayList<String>dataList=new ArrayList<String>();
1700481470
1700481471 //通过构造函数传递进来命令
1700481472
1700481473 public CommandVO(String commandStr){
1700481474
1700481475 //常规判断
1700481476
1700481477 if(commandStr!=null && commandStr.length()!=0){
1700481478
1700481479 //根据分隔符号拆分出执行符号
1700481480
1700481481 String[]complexStr=commandStr.split(CommandVO.DIVIDE_FLAG);
1700481482
1700481483 //第一个参数是执行符号
1700481484
1700481485 this.commandName=complexStr[0];
1700481486
1700481487 //把参数放到List中
1700481488
1700481489 for(int i=1;i<complexStr.length;i++){
1700481490
1700481491 String str=complexStr[i];
1700481492
1700481493 //包含前缀符号,认为是参数
1700481494
1700481495 if(str.indexOf(CommandVO.PREFIX)==0){
1700481496
1700481497 this.paramList.add(str.replace(CommandVO.PREFIX,””).trim());
1700481498
1700481499 }else{
1700481500
1700481501 this.dataList.add(str.trim());
[ 上一页 ]  [ :1.700481452e+09 ]  [ 下一页 ]