使用Apache ANT构建。在类路径中包含commons-io-2.4.jar。
编译器显示此错误:

 error: cannot find symbol
    [javac]         IOUtils.copy(in, out);


编辑-代码

File f1 = new File("c:\\json\\user.json");
 File f2 = new File("c:\\json\\user1.json");

 InputStream in = new FileInputStream(f1);
 OutputStream out = new FileOutputStream(f2, true); // appending output stream

 try {
    IOUtils.copy(in, out);
 }
 finally {
     IOUtils.closeQuietly(in);
     IOUtils.closeQuietly(out);
 }


编辑-答案

进口有误。
导入org.apache.commons.io.IOUtils;

最佳答案

要尝试一些事情,请:


验证代码是否具有:

import org.apache.commons.compress.utils.IOUtils;
验证build.xml是否具有包含以下内容的javac任务的类路径引用:

<classpath>
<pathelement path="${classpath}"/>
<pathelement location="lib/commons-io-2.4.jar"/>
</classpath>

09-30 11:52