「src」フォルダに添付されているファイルを抽出しようとしています。
したがって、ファイルから入力ストリームを取得して、たとえば 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 に変換できません