2

我一直在努力寻找一种在 Undertow 中提供 .jpeg、.png 或其他内容的方法。发送 byte[] 将不起作用,并且由于 Undertow 是非阻塞的,因此我不想通过通常的操作将文件写入输出:

exchange.getOutputStream().write(myFileByteArray);

还有其他方法可以实现吗?我还使用 Undertow 的默认 Base64 库在 Base64 中对图像进行了编码,但也没有用。

编辑:提供一些代码:这是我对文件进行编码的方法。它适用于 .js、.html 和其他文本文件,但不适用于图像。不过,编码是有效的,所以我的问题是,当我把它发回给请求的人时,我是否做错了什么。

这就是我的回应方式:(为stackoverflow目的硬编码)

exchange.getResponseHeaders().put(Headers.CONTENT_TYPE, "image/jpeg");
exchange.getResponseSender().send(getResource(resource, true));

我在下流方面没有任何例外。图片只是不会显示在浏览器上。浏览器说它无法解码图像..

谢谢。

4

1 回答 1

3

好的,所以经过大量工作想知道我的 MIME 配置是否正确,我实际上发现您只需要将文件写入交换对象的 OutputStream 即可。

这是我所做的:

if(!needsBuffering){
    exchange.getResponseSender().send(getResource(resource));
}else{
    exchange.startBlocking();
    writeToOutputStream(resource, exchange.getOutputStream());
}

...

private void writeToOutputStream(String resource, OutputStream oos) throws Exception {

    File f = new File(this.definePathToPublicResources() + resource);

    byte[] buf = new byte[8192];

    InputStream is = new FileInputStream(f);

    int c = 0;

    while ((c = is.read(buf, 0, buf.length)) > 0) {
        oos.write(buf, 0, c);
        oos.flush();
    }

    oos.close();
    is.close();

}
于 2015-05-27T13:36:59.507 回答