我尝试提取附加在我的“src”文件夹中的文件。
所以我想从文件中获取 Inputstream 并将其写入例如 c:/file.txt
我的代码:
InputStream is = Main.class.getResourceAsStream("test.txt");
OutputStream os = new FileOutputStream("c:/file.txt");
byte[] buffer = new byte[4096];
int length;
while ((length = is.read(buffer)) > 0) {
os.write(buffer, 0, length);
}
os.close();
is.close();
错误:
类型不匹配:Eclipse 无法从 java.io.InputStream 转换为 org.omg.CORBA.portable.InputStream