gpt4 book ai didi

java - 使用 ReadableByteChannel 从 URL 读取文件

转载 作者:行者123 更新时间:2023-11-29 09:18:39 25 4
gpt4 key购买 nike

我们有一个 HTTP url 位置,其中包含一个 .txt 文件列表,我想获取并将它们保存为一个文件数组。

SO 中仔细研究之后,我设法建立了一个 channel ,指向托管这样的文件的 URL 位置。

  String hostedLocation = "http://mydomain.com/file/";
URL url= new URL(hostedLocation);
ReadableByteChannel channel = Channels.newChannel(url.openStream());

此时我在尝试拉取所有文件时卡住了。有人可以帮帮我吗。

谢谢

最佳答案

包括 commons-io 作为你的依赖。

然后:

String content = IOUtils.toString(url.openStream());

关于java - 使用 ReadableByteChannel 从 URL 读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7914566/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com