gpt4 book ai didi

android - 从给定的 URL 下载 gif

转载 作者:行者123 更新时间:2023-11-29 20:53:27 25 4
gpt4 key购买 nike

我正在尝试从给定的 Url 下载 GIF,但出现问题。我被困在这里,不知道下载此文件的正确方法。如何修复?我有示例网址:http://i1.kwejk.pl/k/obrazki/2015/02/6f0239004a643dbd9510ebda5a6f22b3.gif

我的代码:

try{
System.out.println(this.adressToGif);
URL url = new URL(urltoGif);
URLConnection conn = url.openConnection();
//conn.connect();
InputStream is = conn.getInputStream(); //IT crashes here and jumps to catch()
BufferedInputStream bis = new BufferedInputStream(is);
bis.mark(conn.getContentLength());
bis.close();

gifPlayer = new NewGifPlayer(this, bis);

//Movie movie = Movie.decodeStream(bis);


}catch(Exception x)
{
System.out.println("There is a problem");
}

最佳答案

您不能在主线程上运行网络操作。为此使用 AsyncTask

关于android - 从给定的 URL 下载 gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28454719/

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