我是玩框架 2.0 的新手,想在本地文件系统中上传文件。但我不知道如何开始。有人可以帮我吗?
问问题
5256 次
1 回答
3
我们的表格
@form(action = routes.Application.upload, 'enctype -> "multipart/form-data") {
<input type="file" name="picture">
<p>
<input type="submit">
</p>
}
我们的上传操作
@BodyParser.Of(value = BodyParser.Text.class, maxLength = 10 * 1024)
public static Result upload() {
MultipartFormData body = request().body().asMultipartFormData();
FilePart picture = body.getFile("picture");
if (picture != null) {
String fileName = picture.getFilename();
String contentType = picture.getContentType();
File file = picture.getFile();
return ok("File uploaded");
} else {
flash("error", "Missing file");
return redirect(routes.Application.index());
}
}
只需将 maxLength = 10 * 1024
(大约 10kb)更改为您想要的长度即可,更多内容可以在文档中找到
如果您要通过 Ajax 发送文件。用这个
public static Result upload() {
File file = request().body().asRaw().asFile();
return ok("File uploaded");
}
上面的响应将被编码为Mutlipart/form-data
但仅包含纯内容文件
于 2013-09-26T14:56:35.707 回答