0

一开始 - 对不起我的英语。

我正在用java开发一个播放应用程序并将其部署到heroku。我喜欢创建一张图片(准确地说是二维码),将其临时存储并显示在下一页上。我确实知道 herokus 临时文件系统,但如果我理解正确,在 cedar 堆栈上,我可以在任何我喜欢的地方创建文件,只要可以,它们不会被存储很长时间。该应用程序只需要生成一个QR,我扫描它,该文件可能会被删除。

好像没有创建文件。关于如何设法临时保存和显示我的 QR 的任何想法?

控制器

public class Application extends Controller {

    private static String workingDirectory = "public/images/";
    public static Result qrCode() {
        String msg = "I am a QR-String";
        BufferedImage image = (BufferedImage) QR.stringToImage(msg);

        String imgPath = workingDirectory+"posQR.png";

        try{
            File outputfile = new File(imgPath);
            ImageIO.write(image,"png",outputfile);
        }catch(IOException e){
            e.printStackTrace();
        }
        return ok(views.html.qrCode.render());
    }
}

查看二维码

<img src="@routes.Assets.at("images/posQR.png")">

编辑 1

将图像存储为 tempFile 并将其传递给视图。在 heroku 本地视图包含确切的绝对路径,但图像不会加载。有什么想法吗?

控制器

public class Application extends Controller {

    private static String workingDirectory = "public/images/";
    public static Result qrCode() {
        String msg = "I am a QR-String";
        BufferedImage image = (BufferedImage) QR.stringToImage(msg);
    File outputfile = null;
        String imgPath = workingDirectory+"posQR.png";

        try{
            outputfile = File.createTempFile("posQR",".png");
            ImageIO.write(image,"png",outputfile);
        }catch(IOException e){
            e.printStackTrace();
        }
            return ok(views.html.qrCode.render(outputfile.getAbsolutePath()));
}

查看二维码

@(qrPath: String)
...
<img id="qr" src=@qrPath>
4

2 回答 2

0

workingDirectory 是否以文件分隔符结尾?

String imgPath = workingDirectory+"posQR.png";
于 2013-08-14T14:21:49.563 回答
-1

这帮助了我:玩!framework 2.0:如何显示多张图片?

最后我做到了。诀窍不是 src=path 而是 src=getImage(path)。仍然很奇怪,但现在它可以工作了。

路线

GET /tmp/*filepath  controllers.Application.getImage(filepath: String)

应用

public class Application extends Controller {

public static Result qrCode() {
    String msg = "I am a QR-String";
    BufferedImage image = (BufferedImage) QR.stringToImage(msg);
    File outputfile = null;

    try{
        outputfile = File.createTempFile("posQR",".png");
        ImageIO.write(image,"png",outputfile);
    }catch(IOException e){
        e.printStackTrace();
    }
    return ok(views.html.qrCode.render(outputfile.getAbsolutePath()));
}
...

public static Result getImage(String imgPath){
    return ok(new File(imgPath));
}
}

查看二维码

@(qrPath: String)
...
<img src="@routes.Application.getImage(qrPath)"/>

感谢您的帮助:D

于 2013-08-19T09:35:43.673 回答