下午好,希望你能帮助我。我正在尝试发送带有 xhr 对象的表单。我的 html 页面中有这个
<form action="" method="post" enctype="multipart/form-data">
<p>
Choose a file : <input type="file" name="archivos"/>
</p>
<input type="submit" value="Upload" onclick="sendForm(this.form)"/>
</form>
我正在使用 xhr 对象执行的表单操作,在我的 javascript 文件中如下
function sendForm(form) {
var formData = new FormData(form);
var xhr = new XMLHttpRequest();
xhr.open('POST','http://localhost:8080/project/webresources/generic/archivo',false);
xhr.send(formData);
}
我存档的前一个网址休息休息在我的文件中,我有以下内容:
@POST
@Path("/archivo")
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces("application/json")
public void uploadFilebyRest(
FormDataMultiPart multiPart)
throws IOException{
List<FormDataBodyPart> fields = multiPart.getFields("archivos");
for (FormDataBodyPart field : fields) {
handleInputStream(field.getValueAs(InputStream.class));
}
}
然后使用方法 handleInputStream 我收到 InputStream 成就并在我的硬盘上创建文件
private String handleInputStream(InputStream uploadedInputStream) throws IOException {
byte[] Arraybytes = IOUtils.toByteArray(uploadedInputStream);
InputStream input = new ByteArrayInputStream(Arraybytes);
int data = input.read();
String uploadedFileLocation = "c://Imagenes/Foto.jpg";
OutputStream out;
out = new FileOutputStream(new File(uploadedFileLocation));
while (data != -1) {
out.write(data);
data = input.read();
}
out.flush();
out.close();
input.close();
return "";
}
以上所有代码都适用于我使用 java EE 6 和 Glassfish 3 有人告诉我为什么我在使用 Java EE 7 和 Glassfish 4 时无法工作 我的日志中有以下内容
415 不支持的媒体类型帮助我!谢谢。