0

我的代码是从 .txt 中读取行并解析这些输入。

输入是这种形式<operation> <category> <name> <price> <quantity> <weight> <optional field1> <optional field2>

电子产品有 2 个选项字段是否易碎 (F/NF) 和要运送到的状态,杂货有 1 个可选字段易腐烂 (P/NP)。这是行输入的一些示例

insert clothing shirt 20.50 1 1

insert electronics PS3 300 1 5.2 F NM

insert groceries cabbage 2.00 5 1 NP

我正在考虑编写一种legalLine()方法来处理输入中的错误

class sampleClass{
          public static void isLegalLine(String lineInput){
    Scanner s = new Scanner(lineInput);
    String operation = null;
    String category = null;
    String name = null;
    float price = 0;
    int quantity = 0;
    float weight = 0;
    String opt1 = null;
    String opt2 = null;
    try{
        operation = s.next(); 
        category = s.next();
        name = s.next();
        price = Float.parseFloat(s.next());
        quantity = Integer.parseInt(s.next());
        weight = Float.parseFloat(s.next());
        if (!operation.equalsIgnoreCase("insert")
                && !operation.equalsIgnoreCase("search")
                && !operation.equalsIgnoreCase("delete")
                && !operation.equalsIgnoreCase("update")
                && !operation.equalsIgnoreCase("print")) {
            System.out.println("invalid operation");
        }
        // more validations for variables category, name, price, quantity, weight goes here
        if(category.equalsIgnoreCase("electronics")){
            try{
                opt1 = s.next();
                opt1 = s.next();
            }catch(Exception e){

            }
        }else if(category.equalsIgnoreCase("groceries")){
            opt1 = s.next();
        }
    }catch (Exception e){
        //general catch for now
        e.getMessage();
    }
}


          public static void main(String[] args) 
      {
               FileReader freader = new FileReader(args[0]);
               BufferedReader bfrReader = new BufferedReader(freader);
               isLegalLine(bfrReader.readLine());


                //program does calculation for total price of input
}

你看......我已经经历了将每个令牌设置为其各自变量的所有麻烦isLegalLine(),我怎样才能将这些信息传递回main()?这是处理输入行错误的好设计吗?

4

2 回答 2

1

由于您还需要处理它们,我看到的一个很好的解决方案是:

创建具有三个子类的 Product 类:服装、电子产品和杂货

然后让你的功能

public static Product isLegalLine(String lineInput)

解析行后返回产品。

于 2012-11-22T23:15:50.577 回答
1

我认为,逐行读取文件会更好。然后,您将对每一行应用正则表达式,因此您将获得您的参数 - 要么是强制性的,要么是可选的。

正则表达式将是这样的:

([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*([\w\d\.]*)\s*

括号中的每个表达式都对应一个参数。代码示例如下:

String pattern = "([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*([\\w\\d\\.]*)\\s*";
Pattern p = Pattern.compile(pattern);
for(String str : strings) {
  Matcher m = p.matcher(str);
  m.find();
  if(m.matches()) {
     String operation = m.group(1);
     String category = m.group(2);
     ...
     float weight = Float.parseFloat(m.group(6));
     String opt1 = m.group(7);
     String opt2 = m.group(8);
  }
}

然后,您只需检查操作是否存在(或不存在)可选参数,并在必要时生成错误。您可以通过返回一个值将任何信息传递回 main(...) 方法。返回值可以是任何你想要的。

于 2012-11-22T23:49:52.633 回答