package servlet;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import test.DownloadUtil;
import test.UploadUtils;
/**
* Servlet implementation class Addreptile
*/
@WebServlet("/addreptile")
public class Addreptile extends HttpServlet {
private static final long serialVersionUID = 1L;
public Addreptile() {
super();
// TODO Auto-generated constructor stub
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) {
String[] selected = request.getParameterValues("selected");
List<String> selecteds = Arrays.asList(selected);
// 调用工具类将图片下载到本地 图片重命名
for (String s : selecteds) {
String uuidName = UploadUtils.getUUIDName(s);
String filePath = "D:/"+ uuidName;
DownloadUtil.downloadImg(s, filePath);
}
}
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response);
}
}
最近下载更多
最近浏览更多
SZEPEZS LV9
2月18日
ma406805131 LV19
2024年5月25日
一本正经的胡乱叭叭叭
2024年5月20日
暂无贡献等级
朱俪的邮件及存储 LV8
2024年3月11日
admin_z LV22
2024年1月29日
ljt289917726 LV3
2023年12月18日
Pro_Guoli
2023年3月23日
暂无贡献等级
12cq345 LV6
2022年11月15日
softandroad
2022年11月8日
暂无贡献等级
heqian LV17
2022年10月17日

