Java 中的 Http POST(带文件上传)
我想做的是从Java应用程序提交一个Web表单。我需要填写的表格位于此处:http://cando-dna-origami.org/
提交表单后,服务器会向给定的电子邮件地址发送一封确认电子邮件,目前我只是手动检查。我尝试手动填写表格,电子邮件发送正常。(还应该注意的是,当表单填写不正确时,页面只会刷新,不会提供任何反馈)。
我以前从未用http做过任何事情,但是我环顾四周,并想出了以下代码,该代码应该向服务器发送POST请求:
String data = "name=M+V&affiliation=Company&email="
+ URLEncoder.encode("m.v@gmail.com", "UTF-8")
+ "&axialRise=0.34&helixDiameter=2.25&axialStiffness=1100&bendingStiffness=230" +
"&torsionalStiffness=460&nickStiffness=0.01&resolution=course&jsonUpload="
+ URLEncoder.encode("C:/Users/Marjie/Downloads/twisted_DNA_bundles/monotwist.L1.v1.json",
"UTF-8") + "&type=square";
URL page = new URL("http://cando-dna-origami.org/");
HttpURLConnection con = (HttpURLConnection) page.openConnection();
con.setDoOutput(true);
con.setRequestMethod("POST");
con.connect();
OutputStreamWriter out = new OutputStreamWriter(con.getOutputStream());
out.write(data);
out.flush();
System.out.println(con.getResponseCode());
System.out.println(con.getResponseMessage());
out.close();
con.disconnect();
但是,当它运行时,它似乎没有任何作用 - 也就是说,我没有收到任何电子邮件,尽管该程序确实将“200 OK”打印到System.out,这似乎表明从服务器收到了某些东西,尽管我不确定它到底是什么意思。我认为问题可能出在文件上传上,因为我不确定该数据类型是否需要不同的格式。
这是使用Java发送POST请求的正确方法吗?我是否需要为文件上传执行其他操作?谢谢!
在阅读了Adam的帖子后,我使用了Apache HttpClient并编写了以下代码:
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("type", "square"));
//... add more parameters
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params, HTTP.UTF_8);
HttpPost post = new HttpPost("http://cando-dna-origami.org/");
post.setEntity(entity);
HttpResponse response = new DefaultHttpClient().execute(post);
post = new HttpPost("http://cando-dna-origami.org/");
post.setEntity(new FileEntity(new File("C:/Users/Marjie/Downloads/twisted_DNA_bundles/monotwist.L1.v1.json"), "text/plain; charset=\"UTF-8\""));
HttpResponse responseTwo = new DefaultHttpClient().execute(post);
但是,它似乎仍然不起作用。同样,我不确定上传的文件如何适应表单,所以我尝试只发送两个单独的POST请求,一个带有表单,另一个包含其他数据。我仍在寻找一种方法将这些组合成一个请求;有人知道吗?