如何使用Java HttpClient 函式庫和PHP 成功上傳檔案
嘗試將檔案從Java 應用程式庫運行PHP,您可能會遇到以下問題:
問題聲明:
使用Jakarta HttpClient 庫將檔案上傳到PHP 的Apache 伺服器的Java 應用程式無法在PHP中註冊文件。 is_uploaded_file 方法傳回 false,且 $_FILES 變數保持為空。
解決方案:
提供的 Java 程式碼包含阻止成功檔案上傳的錯誤。以下修正後的Java 類別解決了此問題:
import java.io.File; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.HttpVersion; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.mime.MultipartEntity; import org.apache.http.entity.mime.content.ContentBody; import org.apache.http.entity.mime.content.FileBody; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.params.CoreProtocolPNames; import org.apache.http.util.EntityUtils; public class PostFile { public static void main(String[] args) throws Exception { HttpClient httpclient = new DefaultHttpClient(); httpclient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1); HttpPost httppost = new HttpPost("http://localhost:9001/upload.php"); File file = new File("c:/TRASH/zaba_1.jpg"); MultipartEntity mpEntity = new MultipartEntity(); ContentBody cbFile = new FileBody(file, "image/jpeg"); mpEntity.addPart("userfile", cbFile); httppost.setEntity(mpEntity); System.out.println("executing request " + httppost.getRequestLine()); HttpResponse response = httpclient.execute(httppost); HttpEntity resEntity = response.getEntity(); System.out.println(response.getStatusLine()); if (resEntity != null) { System.out.println(EntityUtils.toString(resEntity)); } if (resEntity != null) { resEntity.consumeContent(); } httpclient.getConnectionManager().shutdown(); } }
說明:
先前的Java 程式碼與修正後的Java 程式碼之間的主要差異在於MultipartEntity 的使用。 PHP 腳本需要 multipart/form-data 格式的數據,而先前的程式碼不符合這種格式。透過使用 MultipartEntity,資料格式正確且檔案上傳過程可以成功完成。
以上是為什麼我的 Java HttpClient 檔案上傳到 PHP 失敗,如何修復?的詳細內容。更多資訊請關注PHP中文網其他相關文章!