0

我正在尝试从文本文件中读取,但是这些字符串分成不同的属性,但我不知道在第一次拆分后如何进行。

getType()这是我的代码:字符串的偏移量应该是多少?

try {
        InputStream is = context.getAssets().open("Autoeval");
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
         //Skips lines
        for (int i = 0; i< questionNumber; i++) {
            reader.readLine();
        }

        question = reader.readLine();

    } catch (IOException e) {
        e.printStackTrace();
    }
}



public String getId() {

    return question.substring(0, question.indexOf(";"));
}
public String getType() {
    return question.substring(question.indexOf(";"));
}
4

1 回答 1

1

很难看,但你为什么不创建 2 个全局私有变量:

private String _id;
private String _type;

然后,在您阅读问题后,您可以执行以下操作:

{
    //stuff

    question = reader.readLine();

    _id = question.substring(0, question.indexOf(";"));
    _type = question.substring(_id.length); // assuming no other ";" delimiters

}

public String getId() {
    return _id;
}

public String getType() {
    return _type;
}

综上所述,还有更好的方法可以做到这一点。

于 2013-01-30T00:18:14.653 回答