游戏框架 - 在MySQL上载文件(Play framework - uploading file

2019-09-17 03:58发布

什么是上传在MySQL数据库中的文件播放2.0最简单的方法?

Answer 1:

在数据库中或在上传文件夹上传文件,然后保存在数据库中的链接?

我会去保存在数据库中的参考和您的网络服务器某处上传图片。 或者,如果你坚持节约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

  • 0_orange.png
  • 1_apple.png
  • 2_pear.png

编辑:2012-06-23

如果您收到有关公地包错误,你必须包括这在文件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!


Answer 2:

另一种方式,你可以存储参考照片数据库。

鉴于:

<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
            }
}


文章来源: Play framework - uploading file in mySql