Scanner类是否可以一次将整个文件加载到内存中?

Scanner类是否可以一次将整个文件加载到内存中?,第1张

Scanner类是否可以一次将整个文件加载到内存中?

如果您阅读了源代码,则可以自己回答问题。

看来所讨论的Scanner构造函数的实现显示:

public Scanner(File source) throws FileNotFoundException {        this((ReadableByteChannel)(new FileInputStream(source).getChannel()));}

后者包装在阅读器中:

private static Readable makeReadable(ReadableByteChannel source, CharsetDeprer dec) {    return Channels.newReader(source, dec, -1);}

并使用缓冲区大小读取

private static final int BUFFER_SIZE = 1024; // change to 1024;

如您在构造链中的最终构造函数中所看到的:

private Scanner(Readable source, Pattern pattern) {        assert source != null : "source should not be null";        assert pattern != null : "pattern should not be null";        this.source = source;        delimPattern = pattern;        buf = CharBuffer.allocate(BUFFER_SIZE);        buf.limit(0);        matcher = delimPattern.matcher(buf);        matcher.useTransparentBounds(true);        matcher.useAnchoringBounds(false);        useLocale(Locale.getDefault(Locale.Category.FORMAT));    }

因此,看来扫描仪不会一次读取整个文件。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5560811.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存