文章列表
private void sendFile(HttpServletRequest request,
HttpServletResponse response, File file, String fileName)
throws FileNotFoundException, IOException {
FileInputStream fileInput = new FileInputStream(file);
BufferedInputStream in = new BufferedInputStream(fileInput);
ByteArrayOutputStrea ...
private void sendPicture(HttpServletRequest request,
HttpServletResponse response, File file, String fileName)
throws FileNotFoundException, IOException {
FileInputStream fileInput = new FileInputStream(file);
BufferedInputStream in = new BufferedInputStream(fileInput);
ByteArrayOutputS ...