URLからファイルを読み取ろうとしていて、それをFile
タイプにしています。
以下はコードです
public File fileFromUrl(String str) throws IOException
{
File file = new File ("image.png");
URL url = new URL (str);
InputStream input = url.openConnection().getInputStream();
try {
OutputStream output = new FileOutputStream (file);
try {
byte[] buffer = new byte[1024];
int bytesRead = 0;
while ((bytesRead = input.read(buffer, 0, buffer.length)) >= 0) {
output.write(buffer, 0, bytesRead);
}
} finally {
output.close();
}
} finally {
input.close();
}
return file;
}
ただし、次の場所でエラーが発生しています OutputStream output = new FileOutputStream (file);
親切に教えてくださいFile
。url