갤러리에서 이미지 파일을 가져와서 이름을 변경하여 파일 서버로 보내고 싶습니다.
이미지 이름을 어떻게 변경하나요 ????
// 선택한 이미지의 uri를 읽어온다.
Uri selPhtoUri = photoUri;
// 업로드할 서버의 url 주소
String urlString = "http://192.168.0.171/saveImage.jsp";
//절대경로를 획득한다!!! 중요~
Cursor c = getContentResolver().query(Uri.parse(selPhtoUri.toString()), null, null, null, null);
c.moveToNext();
//업로드할 파일의 절대경로 얻어오기("_data") 로 해도 된다.
String absolutePath = c.getString(c.getColumnIndex(MediaStore.MediaColumns.DATA));
//Toast.makeText(PrspCustIndvdlRegActivity.this, absolutePath, 0).show();
System.out.println("absolutePath = " + absolutePath);
System.out.println("urlString = " + urlString);
//파일 업로드 시작!
HttpFileUpload(urlString, "", absolutePath);
