Android Download large files

I am very new to Android development and I am trying to upload a 25 to 50 MB file to a web server and I am getting an out of memory error. I have been scared for the last 2 days and have no idea where I am going wrong.

Are there any suggestions as to where I am going wrong?

The code I am working on is

private FileInputStream fileInputStream = null;
private int bytesavailable,buffersize,bytesRead ;
byte buff[];
int maxBufferSize = 1*1024*1024;
String server_url ="server_url";
DataOutputStream dos;
String Builder response = new String Builder();
String body = "boundary values";
String body2 = "Boundary values";
URL url = null;
    try 
    {
        url = new URL(server_url);
    } 
    catch (MalformedURLException e1) 
    {
        e1.printStackTrace();
    }

    HttpURLConnection conn = null;
    try 
    {
        conn = (HttpURLConnection) url.openConnection();
    } 
    catch (IOException e) 
    {
        e.printStackTrace();
    }
    try 
    {
        conn.setRequestMethod("POST");
        conn.setDoInput(true);
        conn.setDoOutput(true);
        conn.setRequestProperty("Connection","Keep-Alive");
        conn.setRequestProperty("Content-Type","multipart/form-data; boundary=A300x");
        conn.connect();
        dos = new DataOutputStream(conn.getOutputStream());
        dos.writeBytes(body);
        File inputfile = new File(sourceFile);
        fileInputStream = new FileInputStream(inputfile);


        bytesavailable = fileInputStream.available();
        buffersize = Math.min(bytesavailable, maxBufferSize);
        buff = new byte[buffersize];
        bytesRead = fileInputStream.read(buff, 0, buffersize);


            while (bytesRead > 0) 
            {

                dos.write(buff, 0, buffersize);
                dos.flush();
                bytesavailable = fileInputStream.available();
                buffersize = Math.min(bytesavailable, maxBufferSize);
                bytesRead = fileInputStream.read(buff, 0, buffersize);
            }
        fileInputStream.close();
        dos.write("\r\n".getBytes());
        dos.write(body2.getBytes());
        dos.flush();
        dos.close();
} 
    catch (ProtocolException e) 
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    int iresponse = 0;
    try 
    {
        iresponse = conn.getResponseCode();
    } 
    catch (IOException e) 
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    //printStream(conn.getInputStream());

    if (iresponse == HttpURLConnection.HTTP_OK) 
    {

        BufferedReader input = null;
        try 
        {
            input = new BufferedReader(new InputStreamReader(conn.getInputStream()), 8192);
        } 
        catch (IOException e1) 
        {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

        String line = null;
        try 
        {
            while ((line = input.readLine()) != null)
                response.append(line);
        } 
        catch (IOException e) 
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        try 
        {
            input.close();
        } 
        catch (IOException e) 
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }


    return response.toString();

      

+3


source to share


2 answers


You cannot load the entire file into memory - on many devices, you are limited to 16MB or 32MB of heap. You must upload the file to the server in small chunks.



0


source


This might be helpful.



private void uploadFile(File file) throws IOException {
    Log.i(TAG, "Uploading " + file);
    String videoName = file.getParentFile().getName();

    AndroidHttpClient httpclient = AndroidHttpClient.newInstance(GoProLive.TAG);
    try {
        HttpConnectionParams.setConnectionTimeout(httpclient.getParams(), ConnectTimeout);
        HttpConnectionParams.setSoTimeout(httpclient.getParams(), DataTimeout);
        HttpPost post = new HttpPost(
                String.format("http://" + ServerName + "/upload/%s/%s", user.getUsername(), file.getName()));
        post.setEntity(new FileEntity(file, "application/octet-stream"));

        SimpleDateFormat df = (SimpleDateFormat) SimpleDateFormat.getDateTimeInstance(SimpleDateFormat.SHORT, SimpleDateFormat.SHORT, Locale.US);
        df.applyPattern("EEE, dd MMM yyyy HH:mm:ss z");
        post.setHeader("Last-Modified", df.format(new Date(file.lastModified())));
        HttpResponse httpResponse = executePost(httpclient, post);
        int statusCode = httpResponse.getStatusLine().getStatusCode();
        if (statusCode == HttpStatus.SC_OK) {
            file.delete();
        } else {
            throw new HttpException("Failed to upload file " + file.getAbsolutePath(), statusCode);
        }
    } finally {
        httpclient.close();
    }
}

      

0


source







All Articles