可以使用扫描仪写入文件吗?

时间:2012-12-03 05:01:11

标签: java android java.util.scanner

我有以下代码段

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

2 个答案:

答案 0 :(得分:0)

不,正如名字所说,它是Scanner,它只用于阅读,而不是用于写作。

答案 1 :(得分:0)

  

是否可以使用扫描仪参考将str写入新偏移量?

没有。 Scanner课程仅供参考。