gpt4 book ai didi

Java urlConnection,将音频文件保存到服务器?

转载 作者:行者123 更新时间:2023-11-30 09:52:55 25 4
gpt4 key购买 nike

我看过文本文件示例,但是否以与 URLConnection 相同的方式将音频文件直接保存到服务器?

最佳答案

是的,一样的。尽管确保使用二进制输出流将内容写入磁盘。

类似于:

    URLConnection conn = new URL("http://www.gravatar.com/avatar/fd9e8761fad999a1bf1e095fc8f53ffe?s=32&d=identicon&r=PG")
.openConnection();
InputStream is = conn.getInputStream();
FileOutputStream outstream = new FileOutputStream("/tmp/myfile");
byte[] buffer = new byte[4096];
int len;
while ((len = is.read(buffer)) > 0) {
outstream.write(buffer, 0, len);
}
outstream.close();
is.close();

该示例使用您的头像,但区别相同。

关于Java urlConnection,将音频文件保存到服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4088998/

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