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.
我一直在查看 Java Doc,但无法澄清 URLConnection 方法的有效性。
我的问题是,如果我想下载多个 URL 只是文件名不同的文件,那么我还需要在每个 URL 上打开连接吗?
谢谢
我相信答案是肯定的,您需要在每个 URL 上打开一个连接。据我所知,没有办法连接到基本 URL,然后请求读取单独的文件名。也许有一种方法可以做到这一点,但是URLConnection(ie getInputStream()) 中的所有方法都没有参数 - 所以除了打开新连接之外,我看不到请求特定资源的方法。
URLConnection
getInputStream()