일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 국회의원 & 높으신 분들 어록
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- https://minkwon4.tistory.com/161
Archives
- Today
- Total
OPEN between Secret
android studio 에서 multipart를 이용한 이미지 서버로 전송하기 본문
반응형
http://www.pratikbutani.com/2016/06/android-upload-image-file-using-retrofit-2-0/
https://androidclarified.com/android-image-upload-example/
참고로 갤러리에서 갖고온 이미지 경로는 context:?? 로 시작하는데 이 경로에 있는 이미지를 서버로 보내려고 하면 error 발생
이미지의 절대경로를 갖고와서 보내야 하늗네 그 절대경로는 다음 소스를 통해서 구할수 있음
private String getRealPathFromURI(Uri contentURI) {
String filePath;
Cursor cursor = getActivity().getContentResolver().query(contentURI, null, null, null, null);
if (cursor == null) {
filePath = contentURI.getPath();
} else {
cursor.moveToFirst();
int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
filePath = cursor.getString(idx);
cursor.close();
}
return filePath;
}
반응형
'T.N.V > 응용1' 카테고리의 다른 글
java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader 에러 해결 (0) | 2018.05.16 |
---|---|
안드로이드 service 공부하기 (0) | 2018.04.22 |
rss (pubDate format 변경하기) (0) | 2018.04.03 |
우분투 서울로 시간 변경하기 (0) | 2018.03.31 |
18.03.31 (0) | 2018.03.31 |