1
我有一個非常大的疑難問題需要使用其他服務上載文件。 我的問題是,我需要的文件,有關文件..所有在一個POST request.I一些信息一起上傳正在使用的Restlet。文件上傳使用的Restlet
到現在我也沒有要上傳的文件僅僅是信息,我做的是使用使用OutputStreamWriter。這裏有一個例子:
URL adminServerUrl = new URL(wwww....);
HttpURLConnection adminConnection = (HttpURLConnection) adminServerUrl.openConnection();
adminConnection.setRequestMethod("POST");
adminConnection.setDoOutput(true);
adminConnection.setDoInput(true);
adminConnection.setUseCaches(false);
adminConnection.setAllowUserInteraction(false);
OutputStream conOutput = adminConnection.getOutputStream();
Writer writer = new OutputStreamWriter(conOutput, "UTF-8");
writer.write("&due_date=" + (project.getDueDate());
writer.write("&source=" + project.getSourceLanguage());
writer.close();
conOutput.close();
後,我會得到響應,就是這樣....但現在我要上傳的文件,我不知道該怎麼做