<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ include file="/back/header.jsp"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>下载简历</title>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<LINK href="../css/admin.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="menu">
<%@ include file="/back/menu.jsp"%>
</div>
<div id="main" >
<br />
<div class="right1">现在的位置 >>用户简历管理</div>
<br />
<center>
<h2>
可供下载文件有:<br/>
</h2>
<c:forEach var="entry" items="${requestScope.map}">
<c:url var="url_download" value="/servlet/FileServlet">
<c:param name="method" value="download"></c:param>
<c:param name="filename" value="${entry.key}"></c:param>
</c:url>
<c:url var="url_delete" value="/servlet/FileServlet">
<c:param name="method" value="delete"></c:param>
<c:param name="filename" value="${entry.key}"></c:param>
</c:url>
<h4>
${entry.value}<a href="${url_download }">下载</a>|<a
href="${url_delete }">删除</a>
</h4>
</c:forEach>
</center>
</div>
</body>
</html>
文件下载
最新推荐文章于 2025-04-14 09:44:56 发布