play framework 图片等文件的上传方式

play framework 本身的框架就有完整的文件传输的模块

下面为示例:

public static void uploadPhoto(File attachment) {

    Files.copy(attachment, Play.getFile("public/images/" + filename));  //存到images文件夹里面 filename将作为文件的名字

}

就是这么简单,当然需要其他的操作,可以根据自己的要求来写。Android 和 Iphone 上传到服务器,可以在客户端模拟post方式的上传。安全,速度等因素并未详细考虑。

你可能感兴趣的:(文件上传,图片上传)