How to upload an image from Android device to server? – Method 4
Hello all…. This post is also about uploading an image to server from your android device. Previously I have shown three other methods to upload an image to a server. Check these posts to refer this....
View ArticleHow to download a file to your android device from a remote server with a...
Actually this is really simple. I have already posted an example for how to download a file in this post. How to Download an image in ANDROID programatically? This is another one little different with...
View ArticleHow to download a file from a remote site in android? – Another simple...
Hello all ……. I have shown many examples on how to download and upload files in android through this site. These are other methods for downloadign a file in android. 1. How to Download an image in...
View ArticleSerialization in Android – A Simple example.
Serializing a class file provides a fast and efficeint way to store information produced by your application! What is serialization? Serialization is essentually taking a screenshot of a class file...
View ArticleHow to read and write files to SDCARD and application SandBox in Android – A...
Here is a complete example of How to read and write files to SDCARD and application SandBox in Android. First create a new project and inside the mainActivity paste this code. package...
View ArticleHow to store an Image from Android to a SQlite and retrieve it?
Hello all… In today’s post I will show you how to store an image in an SQLite database and retrieve it. Check out the output after running the program. This is the layout for the MainActivity....
View ArticleHow to copy a file to another saved in SDCARD in Android?
Hello all… This tutorial explains how to copy a file contents to another in Android. The file to copy is saved in SDCARD, however you can change the path to save it in your application sandbox. if you...
View ArticleHow to encrypt and decrypt a file using “AES” algorithm in Android? –...
This is a simple example showing how to encrypt and decrypt a file in android. what we will do in this post is 1. Generate a key for encrypting our data. 2. Create a file and save data using ENCRYPTION...
View ArticleUpload bigger files from Android to server – Example
Below is the function which uploads bigger files from Android device to Server. public String sendFileToServer(String filename, String targetUrl) { String response = "error"; Log.e("Image filename",...
View ArticleHow to encrypt and decrypt an audio file in Android?
Here is a simple example to encrypt and decrypt a audio file in Android. We will directly go to the implementation part. Demo Video You can check the demo video here. Download Library You can download...
View Article