安装过程中自动从 Sourceforge 下载
我有一个使用特定于平台的库的 Java 项目。它们很大,但我可以找出安装程序中需要的哪些并下载它们。我想从 Sourceforge(我的项目的其余部分所在)下载它们。
有没有办法让SF自动下载?
如何确保下载使用最好的镜像?
I have a Java project which uses platform specific libraries. They are quite large but I can figure out which ones I need in an installer and download them. I'd like to download them from Sourceforge (where the rest of my project lives).
Is there a way to do automatic downloads from SF?
How do I make sure the download use the best mirror?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您将
?use_mirror=autoselect
附加到下载路径(以 http://downloads.sourceforge.net/project/),SourceForge 将发送 302 Found 响应,将您重定向到最近的镜像。例如:http:// /downloads.sourceforge.net/project/getgnuwin32/getgnuwin32/0.6.30/GetGnuWin32-0.6.3.exe?use_mirror=autoselect
重定向到以下位置:
http://superb-sea2.dl.sourceforge.net/project/ getgnuwin32/getgnuwin32/0.6.30/GetGnuWin32-0.6.3.exe
在下载最新版本方面,您可以解析项目文件的 RSS 提要。
If you append
?use_mirror=autoselect
to the path of your download (beginning with http://downloads.sourceforge.net/project/), SourceForge will send a 302 Found response to redirect you to your closest mirror. For example:http://downloads.sourceforge.net/project/getgnuwin32/getgnuwin32/0.6.30/GetGnuWin32-0.6.3.exe?use_mirror=autoselect
Redirects to the following location for me:
http://superb-sea2.dl.sourceforge.net/project/getgnuwin32/getgnuwin32/0.6.30/GetGnuWin32-0.6.3.exe
In terms of downloading the latest version, you can parse the RSS feed for the project's files.
您可以获取下载页面(例如 http://sourceforge.net/projects/cpptest/files/cpptest/cpptest-1.1.0/cpptest-1.1.0.zip/download)并扫描
请使用此直接链接
正则表达式。然后你就可以为你挑选一面镜子了。You can grab a download page (like http://sourceforge.net/projects/cpptest/files/cpptest/cpptest-1.1.0/cpptest-1.1.0.zip/download) and scan for
Please use this <a href="http://downloads.sourceforge.net/project/.../...?use_mirror=..." class="direct-download">direct link</a>
with a regular expression. Then you have soure forge pick a mirror for you.