我有以下代码片段
/* I have got the file. Now moving to the desired place */
Scanner in_chap = new Scanner(chap);
in_chap.useDelimiter(qa_delimiter);
while (in_chap.hasNext()) {
String str = get_my_info();
/* Now I need to replace the the current line with str */
}
有没有办法使用扫描仪引用将 str 写入新的偏移量?如果我不能,还有其他方法吗?我需要使用扫描仪到达那条线。现在我想用新字符串替换它......