본문 바로가기
Android

[Android] Get only file name from path (파일명만 가져오기)

by bryan.oh 2020. 3. 3.
반응형

get file name from file path
파일path에서 파일명만 가져오기

 

변수 타입에따라 골라서 쓰면 되겠죠~

 

File을 사용하는 방법.

File file = new File("/storage/sdcard0/DCIM/Camera/hello_bryan.jpg"); 
String strFileName = file.getName();
Log.d("TEST", strFileName);	// -> hello_bryan.jpg

 

substring 사용 방법.

String path = "/storage/sdcard0/DCIM/Camera/hello_bryan.jpg";
String filename=path.substring(path.lastIndexOf("/")+1);

 

Uri 일때  Uri.getLastPathSegment()

String filename = uri.getLastPathSegment();

 

728x90
반응형

댓글