Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SBT(我使用的是 0.13.0)中,有一个sbt.IO对象提供了一些有用的方法。例如,可以像这样从 Internet 下载文件:
sbt.IO
sbt.IO.download(new URL(...), file(...)) //my program freezes until end of this method
我正在编写一个 sbt 插件,并想从互联网上下载一些文件。我想在下载过程中以某种方式显示进度条。这会很好地通知用户该程序仍然可以向他显示一些信息。
你会怎么做?
正如 Seth 和 Josh 评论的那样,开箱即用的 sbt 是不可能的。