Jakarta HttpClient를 사용하여 PHP가 포함된 Apache 서버에 파일 업로드
이 기사에서는 일반적인 시나리오를 살펴보겠습니다. Java 애플리케이션에서 PHP를 실행하는 Apache 서버로 파일을 전송합니다. 파일 전송을 용이하게 하기 위해 Jakarta HttpClient 라이브러리 버전 4.0 베타2를 사용할 것입니다.
문제:
개발자가 HttpClient 4.0을 사용하여 파일을 업로드하려고 할 때 문제가 발생했습니다. 베타2. 서버와의 성공적인 통신에도 불구하고 is_uploaded_file 메소드는 false를 반환했으며 $_FILES 변수는 비어 있었습니다. 이는 PHP가 파일을 수신하지 못했음을 나타냅니다.
해결책:
이전에 사용된 잘못된 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(); } }
설명:
원래 오류는 파일 업로드에 FileEntity를 사용하여 발생했는데 이는 적절한 방법이 아닙니다. 업데이트된 코드는 MultipartEntity를 사용하여 파일 업로드를 위한 표준 프로토콜을 따르는 multipart/form-data HTTP 요청을 생성합니다. 올바른 요청 형식을 사용하면 이제 서버가 업로드된 파일을 성공적으로 수신하고 처리할 수 있습니다.
위 내용은 Jakarta HttpClient를 사용하여 Java에서 Apache 서버로 파일을 성공적으로 업로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!