xml.jsp
来自「这是个爬虫和lucece相结合最好了」· JSP 代码 · 共 12 行
JSP
12 行
<%@ page import="org.archive.crawler.util.LogReader" %><% // If there are empty lines before the start of the xml file Mozilla will // not display it properly! String inputFile = request.getParameter("file"); if (inputFile == null) { out.println("No file"); return; } response.setContentType("text/xml"); out.println(LogReader.get(inputFile));%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?