如何通过浏览器下载可执行jar?

时间:2018-06-18 15:49:01

标签: java swing servlets java-web-start corrupt

我无法打开下载的可执行jar。我有一个Web应用程序,用于通过浏览器将jar下载到客户端。该文件很好,但我收到了消息:

Error: Invalid or corrupt jarfile  

我也无法用7zip打开文件。那里发生了什么?

该应用程序是一个JavaFx应用程序,可在本地完美运行,但通过serlvet /浏览器传输时会损坏。

由于非常高的策略设置和导致的类加载问题,我也无法让webstart工作。

我的休息终点:

    @RequestMapping(value = "/fetchTool", method = RequestMethod.GET)
@ResponseBody
public void downloadTool(HttpServletResponse response) throws IOException {

    URL[] urls = ((URLClassLoader)(Thread.currentThread().getContextClassLoader())).getURLs();
    Optional<URL> appPath = Arrays.stream(urls).filter(x->x.getPath().contains("myTool")).findFirst();

    if (appPath.isPresent()){

        String[] fileParts = appPath.get().getPath().split("/");


        response.addHeader(CONTENT, ATTACHMENT + fileParts[fileParts.length - 1]);
        response.setContentType("application/java-archive");

        try (final InputStream input = new FileInputStream(appPath.get().getFile());
             final OutputStream output = response.getOutputStream()) {
             IOUtils.copy(input, output);
        } catch (IOException e) {
            throw new NotFoundException("File Not Found " + appPath.get().getPath(), e);
        }
    }else{
        throw new NotFoundException("MyTool Not Found on classpath");
    }

}

1 个答案:

答案 0 :(得分:1)

错误发生在Angularjs方面,我没有将responseType设置为arrayBuffer。

毕竟不是在Java方面。

应该是:

            method: 'GET',
            transformResponse: fileTransformer,
            dataType:"binary",
            processData : false,
            responseType : 'arraybuffer',
            headers: {
                "Content-Type":undefined,
                "accept": 'application/octet-stream'
            }