httpclient를 사용하여 파일을 업로드하고 있습니다. 업로드 후 파일 크기가 변경됩니다. 파일 업로드 중에 몇 가지 추가 사항이 파일에 추가됩니다. 포함 된 파일을 업로드하기 전에업로드 도중 파일 크기가 증가했습니다.
:
hi this is vipin check
파일을 업로드 한 후이 포함 : 왜 파일 크기가 변화
--j9q7PmvnWSP9wKHHp2w_KCI4Q2jCniJvPbrE0
Content-Disposition: form-data; name="vipin.txt"; filename="vipin.txt"
Content-Type: application/octet-stream
Content-Transfer-Encoding: binary
hi this is vipin check
--j9q7PmvnWSP9wKHHp2w_KCI4Q2jCniJvPbrE0--
? 왜이 추가 내용이 추가됩니까?
내 HttpClient를 코드는 다음과 같습니다 일어나고있는 것으로 보인다 무엇
HttpPut httppost = new HttpPut(URIUtil.encodeQuery(newUrl));
httppost.setHeader("X-Auth-Token", cred.getAuthToken());
httppost.addHeader("User-Agent", "NetMagic-file-upload");
System.out.println("Dest : " + dest.getAbsolutePath());
MultipartEntity mpEntity = new MultipartEntity();
ContentBody cbFile = (ContentBody) new FileBody(src);
mpEntity.addPart(dest.getName(), cbFile);
httppost.setEntity(mpEntity);
System.out.println("executing request " + httppost.getRequestLine());
HttpResponse response = httpclient.execute(httppost);
로컬 파일을 업로드하면 변경됩니까? 아니면 서버에 도착할 것입니까? – flup