이 구문을 사용하여 파일을 일부 매개 변수와 함께 게시했습니다.
curl -v -include --form "key1=value1" --form upload=localfilename URL
파일 크기는 약 500K입니다. 우선, 전송 측에서 내용 길이는 254입니다. 나중에 서버 응답의 내용 길이는 0입니다. 어디에서 잘못 되었습니까?
다음은 명령의 완전한 추적입니다.
* Couldn't find host xxx.xxx.xxx.xxx in the _netrc file; using defaults
* About to connect() to xxx.xxx.xxx.xxx port yyyy (#0)
* Trying xxx.xxx.xxx.xxx...
* Adding handle: conn: 0x4b96a0
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x4b96a0) send_pipe: 1, recv_pipe: 0
* Connected to xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx) port yyyy (#0)
* POST /zzzzzz/UploadFile HTTP/1.1
* User-Agent: curl/7.32.0
* Host: xxx.xxx.xxx.xxx:yyyy
* Accept: */*
* Content-Length: 254
* Expect: 100-continue
* Content-Type: multipart/form-data; boundary=------------------------948a6137eef50079
*
* HTTP/1.1 100 Continue
* HTTP/1.1 100 Continue
* HTTP/1.1 200 OK
* HTTP/1.1 200 OK
* Server Apache-Coyote/1.1 is not blacklisted
* Server: Apache-Coyote/1.1
* Server: Apache-Coyote/1.1
* Added cookie JSESSIONID="C1D7DD042E250211D9DEA82688876F88" for domain xxx.xxx.xxx.xxx, path /zzzzz/, expire 0
* Set-Cookie: JSESSIONID=C1D7DD042E250211D9DEA82688876F88; Path=/zzzzzz/;
* HttpOnly
* Set-Cookie: JSESSIONID=C1D7DD042E250211D9DEA82688876F88; Path=/zzzzzz/; HttpOnly
* Content-Type: text/html;charset=ISO-8859-1
Content-Type: text/html;charset=ISO-8859-1
* Content-Length: 0
* Content-Length: 0
* Date: Tue, 01 Oct 2013 11:54:24 GMT
* Date: Tue, 01 Oct 2013 11:54:24 GMT
* Connection #0 to host xxx.xxx.xxx.xxx left intact
답변
다음 구문이이를 해결합니다.
curl -v -F key1=value1 -F upload=@localfilename URL
답변
Windows에서 curl을 사용하여 파일을 업로드하려면 경로에 이스케이프 된 큰 따옴표가 필요하다는 것을 알았습니다.
예 :
curl -v -F 'upload=@\"C:/myfile.txt\"' URL
답변
이것이 나를 위해 일한 것입니다
curl -F file=@filename URL
답변
다중 부분 HTTP PUT 요청을 curl
Java 백엔드로 보내는 데 어려움을 겪었습니다 . 나는 단순히 시도했다
curl -X PUT URL \
--header 'Content-Type: multipart/form-data; boundary=---------BOUNDARY' \
--data-binary @file
파일 내용은
-----------BOUNDARY
Content-Disposition: form-data; name="name1"
Content-Type: application/xml;version=1.0;charset=UTF-8
<xml>content</xml>
-----------BOUNDARY
Content-Disposition: form-data; name="name2"
Content-Type: text/plain
content
-----------BOUNDARY--
그러나 항상 경계가 잘못되었다는 오류가 발생했습니다. 일부 Java 백엔드 디버깅 후 Java 구현이 \r\n--
접두사로 접두사를 추가하고 있음을 알았습니다 . 따라서 입력 파일을
<-- here's the CRLF
-------------BOUNDARY <-- added '--' at the beginning
...
-------------BOUNDARY <-- added '--' at the beginning
...
-------------BOUNDARY-- <-- added '--' at the beginning
모든 것이 잘 작동합니다!
tl; dr
\r\n
멀티 파트 경계 컨텐츠 --
의 시작 과 경계의 시작에 개행 (CRLF )을 추가하고 다시 시도하십시오.
어쩌면 경계에서 이러한 변경이 필요한 Java 백엔드로 요청을 보내고있을 수 있습니다.
답변
Windows 10의 powershell에서 curl 7.28.1을 사용하면 다음과 같은 결과가 나타납니다.
$filePath = "c:\temp\dir with spaces\myfile.wav"
$curlPath = ("myfilename=@" + $filePath)
curl -v -F $curlPath URL