Http post files to the server,

Source: Internet
Author: User

Http post files to the server,

Filename: File

Http: server address


Public boolean post (String fileName, String http) throws FileNotFoundException {


File file = new File (fileName );
InputStream in = new FileInputStream (file );

ByteArrayEntity arrayEntity;
Try {
ArrayEntity = new ByteArrayEntity (input2byte (in ));
ArrayEntity. setContentType ("application/octet-stream ");
HttpPost httpPost = new HttpPost (http );
HttpPost. setEntity (arrayEntity );
DefaultHttpClient client = new DefaultHttpClient ();
Try {
Int result=client.exe cute (httpPost). getStatusLine (). getStatusCode ();

} Catch (Exception e ){
Throw new RuntimeException (e );
}
} Catch (IOException e1 ){

}

Return false;
}


Public static final byte [] input2byte (InputStream inStream)
Throws IOException {
ByteArrayOutputStream swapStream = new ByteArrayOutputStream ();
Byte [] buff = new byte [1024];
Int rc = 0;
While (rc = inStream. read (buff, 0, 1024)> 0 ){
SwapStream. write (buff, 0, rc );
}
Byte [] in2b = swapStream. toByteArray ();
Return in2b;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.