我对android编程很新,我有以下问题。 我希望能够在我的服务器上放置一个图像,然后如果我使用我的应用程序,它应该使用该图像作为背景。 从以前的研究我明白我不能将任何文件保存到drawable文件? 这甚至可能吗?
我现在到目前为止:
URL url = new URL ("http://oranjelan.nl/oranjelan-bg.png");
InputStream input = url.openStream();
try {
String storagePath = Environment.getExternalStorageDirectory();
OutputStream output = new FileOutputStream (storagePath + "/oranjelangb.png");
try {
byte[] buffer = new byte[1000000];
int bytesRead = 0;
while ((bytesRead = input.read(buffer, 0, buffer.length)) >= 0) {
output.write(buffer, 0, bytesRead);
}
} finally {
output.close();
}
} finally {
input.close();
}
但是我收到以下错误 @ String storagePath = Environment.getExternalStorageDirectory(); compiller说无法将文件转换为字符串。