com.download.android.UploadActivity.java Source code

Java tutorial

Introduction

Here is the source code for com.download.android.UploadActivity.java

Source

package com.download.android;

/*
 * Copyright (C) 2013 Surviving with Android (http://www.survivingwithandroid.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.ByteArrayOutputStream;

import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.ByteArrayBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.DefaultHttpClient;

import com.example.loadimage.R;

import android.os.AsyncTask;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Bitmap.CompressFormat;
import android.graphics.BitmapFactory;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class UploadActivity extends Activity {

    private MenuItem item;
    private String url = "http://192.168.13.129:8888/TestAndroid/UploadServlet";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_upload);

        final EditText edtTxt1 = (EditText) findViewById(R.id.editTextUpl1);
        final EditText edtTxt2 = (EditText) findViewById(R.id.editTextUpl2);
        Button btnUpl = (Button) findViewById(R.id.upload);

        btnUpl.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                String param1 = edtTxt1.getText().toString();
                String param2 = edtTxt2.getText().toString();

                item.setActionView(R.layout.progress);
                SendHttpRequestTask t = new SendHttpRequestTask();

                String[] params = new String[] { url, param1, param2 };
                t.execute(params);
            }
        });

    }

    private class SendHttpRequestTask extends AsyncTask<String, Void, String> {

        @Override
        protected String doInBackground(String... params) {
            String url = params[0];
            String param1 = params[1];
            String param2 = params[2];
            try {
                Bitmap b = BitmapFactory.decodeResource(UploadActivity.this.getResources(), R.drawable.logo);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                b.compress(CompressFormat.PNG, 0, baos);

                HttpClient client = new DefaultHttpClient();

                HttpPost post = new HttpPost(url);
                MultipartEntity multiPart = new MultipartEntity();
                multiPart.addPart("param1", new StringBody(param1));
                multiPart.addPart("param2", new StringBody(param2));
                multiPart.addPart("file", new ByteArrayBody(baos.toByteArray(), "logo.png"));

                post.setEntity(multiPart);

                client.execute(post);
            } catch (Throwable t) {
                // Handle error here
                t.printStackTrace();
            }

            return null;
        }

        @Override
        protected void onPostExecute(String data) {
            item.setActionView(null);

        }

    }

}