简单地说,我有一个包含我所有构建代码的包,另一个(称为“DummieClasses”)包含许多文件,这些文件需要根据命令处理到文件位置。我试过使用:
File file1 = new File(file.getAbsoluteFile()+filename);
FileChannel srcChannel = new FileInputStream("/DummieClasses/yr.png").getChannel();
FileChannel dstChannel = new FileOutputStream(file1).getChannel();
dstChannel.transferFrom(srcChannel, 0, srcChannel.size());
...认为它将 yr.png 从包 DummieClasses 复制到选定的位置,但到目前为止,没有运气。任何帮助表示赞赏。