文件操作try { int n; boolean flag; Scanner in = new Scanner(System.in); flag = true; while (flag){ System.out.println("输入操作选择"); System.out.println("1:文件复制"); System.out.println("2:文件剪切"); System.out.println("3:文件夹复制"); System.out.println("4:文件夹剪切"); n
项目中用到了图片的上传,对于上传过程中,图片的复制项目组用了两种方法,一种是以java的IO流,另外一种是用org.apache.commons.io.FileUtils的工具类,我测试了一下,单纯考虑文件的复制效率,apache的工具类的效率是普通io流读取的3倍。
下面是测试源码:
public class ImageTest {
public static void main(String[] args) throws IOException {
IOTest();
}
p