Arreglado, solo tenía que cambiar el try por este:
   
Código JSP:
Ver original- try {
 
-     InputStream in = new FileInputStream(swfFilePath);
 
-     byte[] data = new byte[in.available()];
 
-     in.read(data);
 
-   
-     response.setContentLength(data.length);
 
-     javax.servlet.ServletOutputStream servletoutputstream = response.getOutputStream();
 
-   
-     servletoutputstream.write(data);
 
-     servletoutputstream.flush();
 
-     servletoutputstream.close();
 
- } catch (IOException e) {}