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 스크립트는 변경되지 않고 그대로 유지됩니다.
Java 코드에 MultipartEntity를 적용함으로써, PHP 스크립트가 업로드된 파일을 감지하지 못하는 문제를 해결하고, 서버에서 파일을 성공적으로 전송하고 처리할 수 있었습니다. .
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3