我如何自动下载.jar文件与Php


How do I auto download .jar files with Php

我已经寻找了很长时间的答案,我有自动下载和重定向完成,我只需要它使.jar文件下载正确。当你下载并打开它时,它总是出现错误。

提示"Error: Invalid or corrupt jarfile C:/path/Final frontier(Pre-Alpha 0.3).jar"

<?php
header("Content-Type: 'application/jar', 'true'");
header('Content-Disposition: attachment; filename="Final frontier (Pre-> Alpha 0.3).jar"');
header("Content-Length: " . filesize("public_html/paid/game/Final frontier (Pre-Alpha 0.3).jar"));
$fp = fopen("public_html/paid/game/Final frontier (Pre-Alpha 0.3).jar", "r");
fpassthru($fp);
fclose($fp);
?>

"非常感谢!!"那工作!

注释回答,因为它解决了问题。

这个fopen("public_html/似乎在捉弄你。我要么删除它fopen("paid/,如果脚本从根运行,或fopen("../paid/作为一个添加的例子,或使用完整的服务器路径。即fopen("/var/usr/you/public_html/paid/

filesize("public_html/

做同样的事情