I need to upload base 64 string to server. String length is too large approximately 5.6 million characters(only one string at a time). For this, which is the best/fastest way to send the string to server? I found many solutions, but commonly used are MultipartEntityBuilder Class and okhttp library. If I use any one of these, is there any image size limitation?
Asked
Active
Viewed 355 times
0

James Z
- 12,209
- 10
- 24
- 44

MinnuKaAnae
- 1,646
- 3
- 23
- 35
-
2base 64 causes this issue many times, you should use Multipart instead – Vivek Mishra Aug 23 '16 at 12:50
-
Thank you for help – MinnuKaAnae Aug 23 '16 at 12:57
-
hi vivek can you give sample code of multipart request in android – Deepak Borade Jun 28 '17 at 14:32