我正在尝试使用NanoHTTPD server
在浏览器上显示图像,但始终无显示。
这是我的serve方法的一部分:
else if(uri.contains(".png")){
SmallBinaryFiles smallBinaryFiles = new SmallBinaryFiles();
InputStream is = new InputStream() {
@Override
public int read() throws IOException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
};
long i=0;
try {
//smallBinaryFiles.readSmallBinaryFiles(uri): converts binary file given by uri to byte[]
is = new ByteArrayInputStream(smallBinaryFiles.readSmallBinaryFile(uri));
while ((is.read()) != -1){
i++;
}
} catch (IOException ex) {
Logger.getLogger(HelloServer.class.getName()).log(Level.SEVERE, null, ex);
}
return new NanoHTTPD.Response(NanoHTTPD.Response.Status.OK, MIME_PNG, is,i);
}
//declaration of MIME_PNG in NanoHTTPD Core
public static final String MIME_PNG = "image/png";
最佳答案
您的while()
循环占用了您所有的输入流,因此没有什么可发送的了。放置-1
而不是i
使其成为块响应。
此外,您的read()
方法似乎在调用时抛出异常。使用FileInputStream
代替。