1 Star 0 Fork 0

lizhi/flash2h5lite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
allswf.jsp 877 Bytes
一键复制 编辑 原始数据 按行查看 历史
lizhi 提交于 2021-07-30 15:41 . LICENSE_APACHE
<%@page session="false" import="java.io.*,java.util.Enumeration" pageEncoding="UTF-8"%>
<%
String path=application.getRealPath(request.getServletPath());
File file=new java.io.File(path);
String[] fileNames = null;
if(!file.isDirectory()){
file=file.getParentFile();
}
String swfpath=request.getParameter("path");
if(swfpath==null){
swfpath="swf";
}
String pageStr=request.getParameter("page");
if(pageStr==null){
pageStr="0";
}
int pagenum=Integer.parseInt(pageStr);
int numPrePage=16;
file=new File(file.getPath()+"/"+swfpath);
if(file.exists()){
fileNames = file.list(new FilenameFilter(){
public boolean accept(File f, String fname){
return fname.toLowerCase().endsWith(".swf");
}
});
}else{
fileNames=new String[0];
}
String outstr="";
for(int i=0;i<fileNames.length;i++){
outstr+="\""+fileNames[i]+"\",";
}
%>
<%=outstr%>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lizhi/flash2h5lite.git
git@gitee.com:lizhi/flash2h5lite.git
lizhi
flash2h5lite
flash2h5lite
master

搜索帮助