Android java从url加载图片

时间:2011-11-18 04:24:30

标签: java android

我有一个问题

private final String images[] = {"http://developer.android.com/images/dialog_custom.png", "http://developer.android.com/images/dialog_progress_bar.png"};

我该如何更改

从我的网站加载文件中的所有链接?

像我网站上的.txt一样喜欢

http://link.com/1.png
http://link.com/2.png
http://link.com/3.png
http://link.com/4.png
http://link.com/5.png
http://link.com/6.png
http://link.com/7.png
http://link.com/8.png
http://link.com/9.png
http://link.com/10.png

因此它只会加载所有这些,然后我可以添加更多链接,而无需更新应用程序

3 个答案:

答案 0 :(得分:2)

使用BufferedReaderreadLine()String,然后获取图片...

答案 1 :(得分:0)

只需将空格或“,”或“/ n”放入文件中,然后逐个获取字符串中的所有数据

String reader = "";
String separated ;

BufferedReader buffer = new BufferedReader(new FileReader("YourFileName.txt"));
while ((reader = buffer.readLine()) != null) {
    separated = reader.split(" "); or reader.split(","); or reader.split("/n");
    //Here at each itration separated will have your single link
}
buffer.close;

答案 2 :(得分:-2)