MyTest.java 594 B

1234567891011121314151617181920212223
  1. package course;
  2. import java.io.IOException;
  3. /**
  4. * @author WanJl
  5. * @version 1.0
  6. * @title Test
  7. * @description
  8. * @create 2026/8/7
  9. */
  10. public class MyTest {
  11. public static void main(String[] args) throws IOException {
  12. String src = "D:\\CentOS7\\SpringCloudAlibaba-CentOS7.zip";
  13. String desc = "E:\\SpringCloudAlibaba-CentOS7.zip";
  14. long start = System.currentTimeMillis();
  15. String message = new BufferedCopy().copy(src, desc);
  16. long end = System.currentTimeMillis();
  17. System.out.println(message + "耗时" + (end - start) + "毫秒");
  18. }
  19. }