url로 리눅스서버에있는 한글파일이나 엑셀 파일을 다운받을려고하는데요
이걸 안드로이드에서 다운받을때 intent로 넘겨줘서
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
이렇게 다운받을려고 합니다.
그런데 DB에 저장될때
./files/attach/binaries/147/448/067/2431793b187b0700a0989406cad58396
이런식으로 뒤에 암호화?한 상태로 저장이 되서 웹페이지에서 url을 치면
파일명이 "2431793b187b0700a0989406cad58396"이걸로 저장이 됩니다....
혹시 url켜져서 안드로이드에 저장될때 파일명 바꾸는 방법이 있나요??