我有一个问题
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
因此它只会加载所有这些,然后我可以添加更多链接,而无需更新应用程序
答案 0 :(得分:2)
使用BufferedReader
至readLine()
与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)