0

简单地说,我有一个包含我所有构建代码的包,另一个(称为“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 复制到选定的位置,但到目前为止,没有运气。任何帮助表示赞赏。

4

1 回答 1

0

如果您使用的是 Java 7,您可以使用Files.copy它为您执行此操作。

于 2012-06-07T23:12:40.640 回答