1

我有以下代码片段

    /* 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 写入新的偏移量?如果我不能,还有其他方法吗?我需要使用扫描仪到达那条线。现在我想用新字符串替换它......

4

2 回答 2

0

不,顾名思义,它是一个Scanner,它只用于阅读,不用于写作。

于 2012-12-03T05:05:02.367 回答
0

有没有办法使用扫描仪引用将 str 写入新的偏移量?

Scanner,课程仅用于阅读目的。

于 2012-12-03T05:06:26.613 回答