Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6086697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:47:07+00:00 2026-05-23T11:47:07+00:00

I want to upload video on specific server in Android. Is is possible ?

  • 0

I want to upload video on specific server in Android.

Is is possible ?

How I can achieve this ?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T11:47:07+00:00Added an answer on May 23, 2026 at 11:47 am

    Had the same issue some time ago. Here’s a code.

    public static int upLoad2Server(String sourceFileUri)
    {
     String upLoadServerUri = "your remote server link";
     // String [] string = sourceFileUri;
     String fileName = sourceFileUri;
    
     HttpURLConnection conn = null;
     DataOutputStream dos = null;
     DataInputStream inStream = null;
     String lineEnd = "\r\n";
     String twoHyphens = "--";
     String boundary = "*****";
     int bytesRead, bytesAvailable, bufferSize;
      byte[] buffer;
     int maxBufferSize = 1 * 1024 * 1024;
     String responseFromServer = "";
    
     File sourceFile = new File(sourceFileUri);
     if (!sourceFile.isFile()) {
     Log.e("Huzza", "Source File Does not exist");
     return 0;
      }
    try { // open a URL connection to the Servlet
     FileInputStream fileInputStream = new FileInputStream(sourceFile);
     URL url = new URL(upLoadServerUri);
     conn = (HttpURLConnection) url.openConnection(); // Open a HTTP  connection to  the URL 
     conn.setDoInput(true); // Allow Inputs
     conn.setDoOutput(true); // Allow Outputs
     conn.setUseCaches(false); // Don't use a Cached Copy
     conn.setRequestMethod("POST");
     conn.setRequestProperty("Connection", "Keep-Alive");
     conn.setRequestProperty("ENCTYPE", "multipart/form-data");
     conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
     conn.setRequestProperty("uploaded_file", fileName);
    dos = new DataOutputStream(conn.getOutputStream());
    
    dos.writeBytes(twoHyphens + boundary + lineEnd);
    dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""+ fileName + "\"" + lineEnd);
     dos.writeBytes(lineEnd);
    
     bytesAvailable = fileInputStream.available(); // create a buffer of  maximum size
     Log.i("Huzza", "Initial .available : " + bytesAvailable);
    
     bufferSize = Math.min(bytesAvailable, maxBufferSize);
     buffer = new byte[bufferSize];
    
     // read file and write it into form...
     bytesRead = fileInputStream.read(buffer, 0, bufferSize);
    
     while (bytesRead > 0) {
      dos.write(buffer, 0, bufferSize);
       bytesAvailable = fileInputStream.available();
       bufferSize = Math.min(bytesAvailable, maxBufferSize);
     bytesRead = fileInputStream.read(buffer, 0, bufferSize);
      }
    
    // send multipart form data necesssary after file data...
    dos.writeBytes(lineEnd);
    dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
    
     // Responses from the server (code and message)
    serverResponseCode = conn.getResponseCode();
    String serverResponseMessage = conn.getResponseMessage();
    
    Log.i("Upload file to server", "HTTP Response is : " + serverResponseMessage + ": " + serverResponseCode);
    // close streams
    Log.i("Upload file to server", fileName + " File is written");
     fileInputStream.close();
    dos.flush();
    dos.close();
     } catch (MalformedURLException ex) {
     ex.printStackTrace();
    Log.e("Upload file to server", "error: " + ex.getMessage(), ex);
    } catch (Exception e) {
    e.printStackTrace();
     }
    //this block will give the response of upload link
      try {
      BufferedReader rd = new BufferedReader(new InputStreamReader(conn
        .getInputStream()));
      String line;
      while ((line = rd.readLine()) != null) {
       Log.i("Huzza", "RES Message: " + line);
      }
      rd.close();
     } catch (IOException ioex) {
      Log.e("Huzza", "error: " + ioex.getMessage(), ioex);
     }
     return serverResponseCode;  // like 200 (Ok)
    
    } // end upLoad2Server
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to upload and store video files to my server using PHP. Could
I want to upload a video from iPhone to a server somewhere. I have
I want to upload .3gp video files to server via PHP code. I checked
My code can upload the video to YouTube successfully, I want to get the
I want to upload video to server and then display it on web page
I want to upload a video to webserver. I can upload the video but
I want to upload a list of users from my work's LDAP server to
i want to upload the sound file (.ogg) in server. But it should write
I want to upload files directly to IIS7 (in this case I am using
I want to upload a file to a ftp server programmatically (C++). If the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.