Ajax请求访问action判断文件是否存在

前端之家收集整理的这篇文章主要介绍了Ajax请求访问action判断文件是否存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

action中的写法:

public ActionForward fileIsExsit(ActionMapping mapping,ActionForm form,

HttpServletRequest request,HttpServletResponse response) {
String url = request.getParameter("loadFile");
File file = new File(request.getServletContext().getRealPath("/") + url);
response.setCharacterEncoding("utf-8");


PrintWriter out;
try {
out = response.getWriter();
if (!file.exists()) {
out.print("no");
}


out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}


return null;

}

页面中js的写法:

//验证文件是否存在 function valFile(url){ $.post(url,{参数列表},function(result){ alert(result); }); }

原文链接:https://www.f2er.com/ajax/164325.html

猜你在找的Ajax相关文章