我有以下代码段
/* 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写入新偏移量?如果我不能有其他办法吗?我需要使用扫描仪才能到达那条线。现在我想用新字符串替换它......
答案 0 :(得分:0)
不,正如名字所说,它是Scanner
,它只用于阅读,而不是用于写作。
答案 1 :(得分:0)
是否可以使用扫描仪参考将str写入新偏移量?
没有。 Scanner
课程仅供参考。