1
curl -F file=@/path/to/index.html -u lslkdfmkls@gmail.com -F 'data={"title":"API V1  App","package":"com.alunny.apiv1","version":"0.1.0","create_method":"file"}' https://build.phonegap.com/api/v1/apps 

我正在尝试使用使用 HttpClient 库的 java 程序来实现相同的目的。

DefaultHttpClient client = new DefaultHttpClient(); 
HttpHost targetHost = new HttpHost("build.phonegap.com", 443, "https"); 
client.getCredentialsProvider().setCredentials( 
new AuthScope(targetHost.getHostName(), targetHost.getPort(),AuthScope.ANY_REALM), 
new UsernamePasswordCredentials("abc@gmail.com", "abc123")); 

String authToken = "?auth_token=abcdefgh"; 

HttpPost httpPost = new HttpPost("https://build.phonegap.com/api/v1/apps" + authToken ); 

String jsonString = "{\"title\":\"API V1 App\",\"create_method\":\"file\"}"; 
MultipartEntity multipartEntity = new MultipartEntity(); 
multipartEntity.addPart(new FormBodyPart("data", new StringBody(jsonString))); 
multipartEntity.addPart("file", new FileBody(new File("C:/Users/Desktop/app.zip"))); 

/*StringEntity entity = new StringEntity(jsonString, "UTF-8"); */
httpPost.setEntity(multipartEntity);  

System.out.println("executing request " + httpPost.getRequestLine()); 
HttpResponse httpResponse = client.execute(httpPost); 
HttpEntity entity = httpResponse.getEntity(); 
System.out.println(httpResponse.getStatusLine()); 
if(entity != null ){ 
System.out.println(EntityUtils.toString(entity)); 
} 

在上面的代码中,我只能设置 StringEntity 或 FileEntity 但不能同时设置两者,我认为这是获得 curl 命令功能所必需的。

在尝试了 StringEntity 和 FileEntity 之后,我尝试了 MultipartEntity 但没有运气..您能否向我提供更多详细信息,如果可能的话,请提供一个示例..

提前致谢。

4

1 回答 1

0

必须按如下方式实例化 MultipartEntity:

MultipartEntity multipartEntity = new MultipartEntity(
                                         HttpMultipartMode.BROWSER_COMPATIBLE 
                                                       ) ;

这对我有用。

默认情况下,使用 javadocs 中记录为 "RFC 822, RFC 2045, RFC 2046 compliant" 的模式MultipartEntity实例化。HttpMultipartMode.STRICT

有人可以简要介绍一下这里提到的 RFC,以便清楚地理解..

多谢

于 2012-11-21T15:58:24.033 回答