일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리눅스
- 젠킨스
- 인증번호 문자
- CODEIGNITER
- vim
- 우분투 아파치 ssl
- Android
- 가상머신
- vimrc
- Firebase
- 우분투
- phpMyAdmin
- jenkins 업데이트
- Phone Selector
- 가상컴퓨터
- 아파치 https 적용
- php
- 안드로이드
- ubuntu
- 전화번호 가져오기
- 아파치
- 웹서버
- vi
- jenkins war
- virtualbox
- jenkins
- 버추얼박스
- SMS Retreiver API
- 우분투 젠킨스
- 우분투 젠킨스 업데이트
- Today
- Total
철스토리
Retrofit2 - 서버와 데이터를 주고받는 라이브러리 (작성중) 본문
http://tosslab.github.io/android/2016/04/16/migration-to-retrofit2.html
http://square.github.io/retrofit/
http://mytalkhome.tistory.com/867
http://falinrush.tistory.com/5
https://zeroturnaround.com/rebellabs/getting-started-with-retrofit-2/
https://inthecheesefactory.com/blog/retrofit-2.0/en
https://brunch.co.kr/@henen/25
// 파일 업로드 관련
http://www.pratikbutani.com/2016/06/android-upload-image-file-using-retrofit-2-0/
https://futurestud.io/tutorials/retrofit-2-how-to-upload-multiple-files-to-server
https://futurestud.io/tutorials/retrofit-2-how-to-upload-files-to-server
http://stackoverflow.com/questions/37818301/retrofit-2-simple-upload-file-to-server
----------------------------------------------------------------------------------------------------------------------
Get방식과 Post방식 서버에 요청하는 방법
@GET("test/path")
Call<ResponseBody> getTestPath(@Query("postId") int postId);
@FormUrlEncoded
@POST("test/path")
Call<ResponseBody> getTestPath(@Field("test") String strTest);
- Query는 Get방식에서 요청 보낼 때
- Field는 Post방식에서 요청보낼 때 (상단에 @FromUrlEncoded 를 적어줘야 함)
'안드로이드 > 유용한 라이브러리' 카테고리의 다른 글
StickyScrollView - Scrollview 중 일부 타이틀 고정 (0) | 2016.10.05 |
---|---|
TedPermission - 안드로이드 6.0 마시멜로우 권한설정 라이브러리 (0) | 2016.10.01 |
SugarORM - 안드로이드 DB접근을 쉽게 (0) | 2016.09.30 |
Glide - 이미지뷰 관련 라이브러리 (0) | 2016.08.24 |
ScalableLayout - 비율에 맞춰서 화면 조절 (1) | 2016.07.11 |