new fileinputstream()传参
时间: 2023-04-26 22:01:59 浏览: 239
Java中的FileInputStream 和 FileOutputStream 介绍_动力节点Java学院整理
5星 · 资源好评率100%
new FileInputStream()传参是指在创建一个FileInputStream对象时,需要传入一个文件路径或文件对象作为参数,以便打开该文件并读取其中的数据。例如:
File file = new File("example.txt");
FileInputStream fis = new FileInputStream(file);
这样就创建了一个FileInputStream对象fis,并打开了文件example.txt,可以通过fis对象读取该文件中的数据。
阅读全文