我正在尝试从文本文件中读取,但是这些字符串分成不同的属性,但我不知道在第一次拆分后如何进行。
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(";"));
}