在play 2.0中上传mySql数据库中文件的最简单方法是什么?
答案 0 :(得分:4)
上传数据库或上传文件夹中的文件,然后在数据库中保存链接?
我会去保存数据库中的引用并将图像上传到您的网络服务器上。或者,如果您坚持将图像保存在数据库中,请将其另存为拇指,这样可以保持数据库大小的可维护性和数据库大小可接受。在我看来,DB是数据,而不是图像等资产。
记录上传文件:http://www.playframework.org/documentation/2.0/JavaFileUpload
我是怎么做到的:
查看强>
在视图中,确保您拥有正确的enctype
(此版本基于Twitter引导程序)
@helper.form(controllers.orders.routes.Task.save, 'class -> "form-horizontal", 'enctype -> "multipart/form-data")
文件输入:
@inputFile(taskForm("file1"), '_display -> "Attachment", '_label -> Messages("file"))
在您的控制器中
// first i get the id of the task where I want to attach my files to
MultipartFormData body = request().body().asMultipartFormData();
List<FilePart> resourceFiles = body.getFiles();
然后通过附件迭代并将它们上传到上传文件夹:
for (int i = 0; i < resourceFiles.size(); i++) {
FilePart picture = body.getFile(resourceFiles.get(i).getKey());
String fileName = picture.getFilename();
File file = picture.getFile();
File destinationFile = new File(play.Play.application().path().toString() + "//public//uploads//"
+ newTask.getCode() + "//" + i + "_" + fileName);
System.out.println(play.Play.application().path());
System.out.println(file.getAbsolutePath());
try {
FileUtils.copyFile(file, destinationFile);
TaskDocument taskDocument = new TaskDocument(newTask.description, "/assets/uploads/"
+ newTask.getCode() + "/" + i + "_" + fileName, loggedInUsr, newTask);
taskDocument.save();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
<强>结果强>
上面的代码导致创建文件夹并将文件放在该文件夹中。例如:
文件夹:T000345
编辑:2012-06-23
如果您收到有关commons包的错误,则必须将其包含在文件Build.scala
中:
val appDependencies = Seq(
// Add your project dependencies here,
"mysql" % "mysql-connector-java" % "5.1.18",
"org.specs2" %% "specs2" % "1.9" % "test",
"commons-io" % "commons-io" % "2.2") // at least this one must be present!
答案 1 :(得分:1)
另一种方法是,您可以在数据库中存储对照片的引用。
<form action="@routes.Application.index" method="POST" enctype="multipart/form-data">
Photo<input type="file" name="photo"> <br>
<input type="submit" value="Submit">
</form>
在控制器中:
MultipartFormData body = request().body().asMultipartFormData();
FilePart photo = body.getFile("photo");
if (photo != null) {
String fileName = photo.getFilename();
File file = photo.getFile();
File newFile = new File(play.Play.application().path().toString() + "//public//uploads//"+ "_" + fileName);
file.renameTo(newFile); //here you are moving photo to new directory
System.out.println(newFile.getPath()); //this path you can store in database
}
}