PHP를 사용하여 Java에서 Apache 서버로 파일을 업로드하려는 시도에서 Jakarta를 활용하여 Java 애플리케이션이 생성되었습니다. HttpClient 라이브러리 버전 4.0 베타2. 그러나 PHP 스크립트가 업로드된 파일을 인식하지 못해 빈 $_FILES 배열이 생성되었습니다.
아래 수정된 버전에서 알 수 있듯이 초기 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(); } }
가장 큰 차이점은 파일을 적절하게 처리할 수 있는 MultipartEntity를 활용한다는 점입니다.
PHP 스크립트는 변경되지 않았습니다.
<?php if (is_uploaded_file($_FILES['userfile']['tmp_name'])) { echo "File ". $_FILES['userfile']['name'] ." uploaded successfully.\n"; move_uploaded_file ($_FILES['userfile'] ['tmp_name'], $_FILES['userfile'] ['name']); } else { echo "Possible file upload attack: "; echo "filename '". $_FILES['userfile']['tmp_name'] . "'."; print_r($_FILES); } ?>
Java 코드에서 MultipartEntity를 사용하면 업로드된 파일을 감지하지 못하는 PHP 스크립트가 해결되었으며, 서버에서 파일을 성공적으로 전송하고 처리할 수 있었습니다.
위 내용은 Java HttpClient 파일을 PHP 서버로 업로드하는 데 실패하는 이유는 무엇이며 MultipartEntity를 사용하여 문제를 해결하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!