자바 의 File 대상 이 파일 작업 에 자주 사용 하 는 몇 가지 방법(추천)
직접 코드 올 리 기:
//
File file=new File("E:/android_demo/a");
File fileTest=new File("E:/android_demo/a/test.mp3");
//
File f=file.getParentFile();
System.out.println("f=="+f);//E:\android_demo
//
boolean is=file.exists();// , fasle
System.out.println("is=="+is);
// getPath
String path1=file.getAbsolutePath();
System.out.println("path=="+path1);//E:\android_demo\a
//
String path2=file.getPath();
System.out.println("path2=="+path2);//E:\android_demo\a
//
String s=file.getName();
System.out.println("s==="+s);
// , :E:/android_demo/a
file.mkdir();
// , :E:/android_demo/a/test.mp3
fileTest.createNewFile();
// , ;
long l=f.length();
System.out.println("l=="+l);
// string
String str=fileTest.toString();
System.out.println("str=="+str);// E:\android_demo\a\test.mp3
//
File fileTest2=new File("E:/android_demo/a/test2.mp3");
boolean b2=fileTest.renameTo(fileTest2);
System.out.println("b2=="+b2);// E:/android_demo/a/test2.mp3
//
boolean b3=fileTest.delete();
// , , ,
boolean b4=file.delete();
이상 의 자바 의 File 대상 이 파일 의 조작 에 자주 사용 하 는 몇 가지 방법(추천)은 바로 편집장 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.