Skip to main content

Posts

Showing posts from 2014

Upload File with Form Data in Java

This is simple Java code to upload file with form data  Jar file Used: Apache Http Client   package com.james.util.file.upload; import java.io.File; import java.io.IOException; import org.apache.http.HttpEntity; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.ContentType; import org.apache.http.entity.mime.MultipartEntityBuilder; import org.apache.http.entity.mime.content.FileBody; import org.apache.http.entity.mime.content.StringBody; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.util.EntityUtils; public class FileUpload {             public static void main(String[] args) throws ClientProtocolException, IOException {                         String  ticket="62cd28e08e398be82e38a064ed";             String url = " ?ticket=";             S