|
|
|
@ -19,6 +19,27 @@ public class DownloadController {
|
|
|
|
|
public void getImage(HttpServletResponse response
|
|
|
|
|
, @RequestParam String type
|
|
|
|
|
, @RequestParam String name) throws IOException {
|
|
|
|
|
|
|
|
|
|
if (name.endsWith("pdf")) {
|
|
|
|
|
OutputStream os = null;
|
|
|
|
|
try {
|
|
|
|
|
FileInputStream input = new FileInputStream(new File("d:/1s/udiwms/register/file/" + type + "/" + name));
|
|
|
|
|
OutputStream out = response.getOutputStream();
|
|
|
|
|
byte[] b = new byte[2048];
|
|
|
|
|
int len;
|
|
|
|
|
while ((len = input.read(b)) != -1) {
|
|
|
|
|
out.write(b, 0, len);
|
|
|
|
|
}
|
|
|
|
|
input.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
if (os != null) {
|
|
|
|
|
os.flush();
|
|
|
|
|
os.close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
OutputStream os = null;
|
|
|
|
|
try {
|
|
|
|
|
// 读取图片
|
|
|
|
@ -40,6 +61,9 @@ public class DownloadController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GetMapping(value = "/udiwms/donwload/file")
|
|
|
|
|
public void download(HttpServletResponse response,
|
|
|
|
|
@RequestParam String fileName) throws IOException {
|
|
|
|
|