Make a File with the name Decompress.java and add the following code snippet in it.
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import android.util.Log;
/**
*
* @author jon
*/
public class Decompress {
private String _zipFile;
private String _location;
public Decompress(String zipFile, String location) {
_zipFile = zipFile;
_location = location;
_dirChecker("");
}
public void unzip() {
try {
FileInputStream fin = new FileInputStream(_zipFile);
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
Log.v("Decompress", "Unzipping " + ze.getName());
if (ze.isDirectory()) {
_dirChecker(ze.getName());
} else {
FileOutputStream fout = new FileOutputStream(_location
+ ze.getName());
for (int c = zin.read(); c != -1; c = zin.read()) {
fout.write(c);
}
zin.closeEntry();
fout.close();
}
}
zin.close();
deleteDir(_zipFile);
} catch (Exception e) {
Log.e("Decompress", "unzip", e);
}
}
private void _dirChecker(String dir) {
File f = new File(_location + dir);
if (!f.isDirectory()) {
f.mkdirs();
}
}
private void deleteDir(String dir) {
// TODO Auto-generated method stub
File f = new File(dir);
// Util.iLog("delete dir :" + dir);
if (f.exists()) {
f.delete();
}
}
}
Now call these class with the zip file location and unzip location with the following code snippet
Decompress d = new Decompress(zipfileloc, Unziploc);
d.unzip();
Search This Blog
Showing posts with label FileInputStream. Show all posts
Showing posts with label FileInputStream. Show all posts
Saturday, November 23, 2013
Tuesday, February 28, 2012
Uploading Image to the server using webservice
first of all reach to the gallery of the phone using the intent.
Button btnBrowse = (Button)findViewById(R.id.btn_browse);
btnBrowse.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
}
});
Now onActivityResult should be like this.
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
EditText imageBrowse = (EditText)findViewById(R.id.thumb_url);
imageBrowse.setText(selectedImagePath);
byte[] strBytes = convertToBytes(selectedImagePath);
imageBytes = strBytes;
}
}
}
public byte[] convertToBytes(String selectedImagePath)
{
try
{
FileInputStream fs = new FileInputStream(selectedImagePath);
Bitmap bitmap = BitmapFactory.decodeStream(fs);
ByteArrayOutputStream bOutput = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG,1, bOutput);
byte[] dataImage = bOutput.toByteArray();
return dataImage;
}
catch(NullPointerException ex)
{
ex.printStackTrace();
return null;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
return null;
}
}
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
Using this bytes you'll get the image uploaded to the web service and store the image on to the server.
Button btnBrowse = (Button)findViewById(R.id.btn_browse);
btnBrowse.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
}
});
Now onActivityResult should be like this.
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
EditText imageBrowse = (EditText)findViewById(R.id.thumb_url);
imageBrowse.setText(selectedImagePath);
byte[] strBytes = convertToBytes(selectedImagePath);
imageBytes = strBytes;
}
}
}
public byte[] convertToBytes(String selectedImagePath)
{
try
{
FileInputStream fs = new FileInputStream(selectedImagePath);
Bitmap bitmap = BitmapFactory.decodeStream(fs);
ByteArrayOutputStream bOutput = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG,1, bOutput);
byte[] dataImage = bOutput.toByteArray();
return dataImage;
}
catch(NullPointerException ex)
{
ex.printStackTrace();
return null;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
return null;
}
}
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
Using this bytes you'll get the image uploaded to the web service and store the image on to the server.
Labels:
Activity,
Bitmap,
cursor,
FileInputStream,
GalleryImage,
ImageBytes,
Intent,
Uri
Subscribe to:
Posts (Atom)