java这么多流中,有哪些流是带缓冲的?




Qq2)
另外,不带缓冲的是不是用一个BufferedInputStream做中介使其有缓冲?譬如:
FileInputStream fos = new FileInputStream(new File("out.data"));
DataInputStream oos = new DataInputStream(new BufferedInputStream(fos));
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
带buffer的都有缓冲
带Buffer的