blobstore
simple HttpURLConnection POST file multipart/form-data from android to google blobstore
use okhttp and use following snippet (taken from recipes) adjust the header values according to what your server expects. private static final String IMGUR_CLIENT_ID = “…”; private static final MediaType MEDIA_TYPE_PNG = MediaType.parse(“image/png”); private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { // Use the imgur image upload API as documented … Read more
What is it exactly a BLOB in a DBMS context
BLOB : BLOB (Binary Large Object) is a large object data type in the database system. BLOB could store a large chunk of data, document types and even media files like audio or video files. BLOB fields allocate space only whenever the content in the field is utilized. BLOB allocates spaces in Giga Bytes. USAGE … Read more