当前位置:   article > 正文

javaSE File,File类的获取功能方法。getName(),length(),getAbsolutePath(),getParent()_getparentfile().getabsolutepath()

getparentfile().getabsolutepath()


Demo.java:

  1. package cn.xxx.demo;
  2. import java.io.File;
  3. // File类的获取功能
  4. public class Demo {
  5. public static void main(String[] args) {
  6. function_3();
  7. }
  8. public static void function_3(){
  9. File file = new File("d:\\eclipse\\eclipse.exe");
  10. String str = file.getParent(); // 获取父路径。 String类型
  11. File parent = file.getParentFile(); // 获取父路径。 File类型
  12. System.out.println(parent);
  13. }
  14. public static void function_2(){
  15. File file = new File("src");
  16. String str = file.getAbsolutePath(); // 获取绝对路径。 String类型。
  17. File absolute = file.getAbsoluteFile(); // 获取绝对路径。 File类型。
  18. System.out.println(absolute);
  19. }
  20. public static void function_1(){
  21. File file = new File("d:\\eclipse\\eclipse.exe");
  22. long length = file.length(); // 获取文件大小(单位字节)。 不能获取文件夹的大小
  23. System.out.println(length);
  24. }
  25. public static void function(){
  26. File file = new File("d:\\eclipse\\eclipse.exe");
  27. String name = file.getName(); // 获取路径中的最后部分的名字。(可能是文件名,也可能是文件夹名)
  28. System.out.println(name);
  29. /*String path = file.getPath(); // File对象转成String对象。 类似toString().
  30. System.out.println(path);*/
  31. // System.out.println(file);
  32. }
  33. }


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/819864
推荐阅读
相关标签
  

闽ICP备14008679号