URL url = new URL("http://localhost:8080/Work/images/abt.jpg");
InputStream in = new BufferedInputStream(url.openStream());
ByteArrayOutputStream out = new ByteArrayOutputStream();
byte[] buf = new byte[1024];
int n=0;
while (-1!=(n=in.read(buf)))
{
out.write(buf, 0, n);
}
out.close();
in.close();
byte[] response1 = out.toByteArray();
FileOutputStream fos = new FileOutputStream("C://abt.jpg");
fos.write(response1);
fos.close();
在这段代码中,最后 3 行有一些错误
严重:servlet ImageDownloadServlet 的 Servlet.service() 引发 java.io 异常。FileNotFoundException : C:/abt.jpg (没有这样的文件或目录)
我该如何解决?