亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? fingerprint.jsp

?? 精通Java核心技術(shù)的隨書源代碼
?? JSP
字號:
<%@ page import="java.io.File,                 java.io.IOException,                 java.util.Date"    session="false" %><html><head><title>System Fingerprint</title></head><body bgcolor=#ffffff><%!    /*     * Fingerprint the users system. This is mainly for use in     * diagnosing classpath problems. It is intended to dump out     * a copy of the environment this webapp is running in,     * and additionally attempt to identify versions of each jar     * in the classpath.     *     * @author Brian Ewins     */    private java.util.Properties versionProps=new java.util.Properties();    /**     * Identify the version of a jar file. This uses a properties file     * containing known names and sizes in the format     * 'name(size)=version'. Version strings should be like 'xerces-1.4'     * ie they should include the name of the library.     */    public String getFileVersion(File file) throws IOException {        String key="<td>"+file.getName()+"</td>";        key+= "<td>"+file.length()+"</td>";        Date timestamp=new Date(file.lastModified());        key+= "<td>"+timestamp.toString()+"</td>";        return key;        /* TODO: implement        String value=versionProps.getProperty(key);        if (value==null) {            // make it possible to have jars without version nos            value=versionProps.getProperty(file.getName());        }        if (value==null) {            // fall back on something obvious            value=key;            Date timestamp=new Date(file.lastModified());            value+=" / "+timestamp.toString();        }        return value;        */    }    /**     * Split up a classpath-like variable. Returns a list of files.     * TODO: this can't cope with relative paths. I think theres code in BCEL that     * can be used for this?     */    File[] splitClasspath(String path) throws IOException {        java.util.StringTokenizer st=            new java.util.StringTokenizer(path,                            System.getProperty("path.separator"));        int toks=st.countTokens();        File[] files=new File[toks];        for(int i=0;i<toks;i++) {            files[i]=new File(st.nextToken());        }        return files;    }    /** given a list of files, return a list of jars which actually exist */    File[] scanFiles(File[] files) throws IOException {        File[] jars=new File[files.length];        int found=0;        for (int i=0; i<files.length; i++) {            if (files[i].getName().toLowerCase().endsWith(".jar")                    && files[i].exists()) {                jars[found]=files[i];                found++;            }        }        if (found<files.length) {            File[] temp=new File[found];            System.arraycopy(jars,0,temp,0,found);            jars=temp;        }        return jars;        }    private static final File[] NO_FILES=new File[0];    /** scan a directory for jars */        public File[] scanDir(String dir) throws IOException         {         return scanDir(new File(dir));         }            public File[] scanDir(File dir) throws IOException {        if (!dir.exists() || !dir.isDirectory()) {            return NO_FILES;        }        return scanFiles(dir.listFiles());    }    /** scan a classpath for jars */        public File[] scanClasspath(String path) throws IOException {        if (path==null) {            return NO_FILES;        }        return scanFiles(splitClasspath(path));    }    /**      * scan a 'dirpath' (like the java.ext.dirs system property) for jars      */       public File[] scanDirpath(String path) throws IOException {        if (path==null) {            return NO_FILES;        }        File[] current=new File[0];        File[] dirs=splitClasspath(path);        for(int i=0; i<dirs.length; i++) {            File[] jars=scanDir(dirs[i]);            File[] temp=new File[current.length+jars.length];            System.arraycopy(current,0,temp,0,current.length);            System.arraycopy(jars,0,temp,current.length,jars.length);            current=temp;        }        return scanFiles(current);    }    /** print out the jar versions for a directory */    public void listDirectory(String title, JspWriter out,String dir, String comment) throws IOException {        listVersions(title, out,scanDir(dir), comment);    }    /** print out the jar versions for a directory-like system property */    public void listDirProperty(String title, JspWriter out,String key, String comment) throws IOException {        listVersions(title, out,scanDir(System.getProperty(key)), comment);    }    /** print out the jar versions for a classpath-like system property */    public void listClasspathProperty(String title, JspWriter out,String key, String comment) throws IOException {        listVersions(title, out,scanClasspath(System.getProperty(key)), comment);    }    /** print out the jar versions for a 'java.ext.dirs'-like system property */    public void listDirpathProperty(String title, JspWriter out,String key, String comment) throws IOException {        listVersions(title, out,scanDirpath(System.getProperty(key)), comment);    }    /** print out the jar versions for a context-relative directory */    public void listContextPath(String title, JspWriter out, String path, String comment)  throws IOException {        listVersions(title, out,scanDir(this.getServletContext().getRealPath(path)), comment);    }    /** print out the jar versions for a given list of files */    public void listVersions(String title, JspWriter out,File[] jars, String comment) throws IOException {        out.print("<h2>");        out.print(title);        out.println("</h2>");        out.println("<table>");        for (int i=0; i<jars.length; i++) {            out.println("<tr>"+getFileVersion(jars[i])+"</tr>");        }        out.println("</table>");        if(comment!=null && comment.length()>0) {            out.println("<p>");            out.println(comment);            out.println("<p>");        }    }%><h1>System Fingerprint</h1><h2>JVM and Server Version</h2><table><tr>    <td>Servlet Engine</td>    <td><%= this.getServletContext().getServerInfo() %></td>    <td><%= this.getServletContext().getMajorVersion() %></td>    <td><%= this.getServletContext().getMinorVersion() %></td></tr><tr>    <td>Java VM</td>    <td><%= System.getProperty("java.vm.vendor") %></td>    <td><%= System.getProperty("java.vm.name") %></td>    <td><%= System.getProperty("java.vm.version") %></td></tr><tr>    <td>Java RE</td>    <td><%= System.getProperty("java.vendor") %></td>    <td><%= System.getProperty("java.version") %></td>    <td> </td></tr><tr>    <td>Platform</td>    <td><%= System.getProperty("os.name") %></td>    <td><%= System.getProperty("os.arch") %></td>    <td><%= System.getProperty("os.version") %></td></tr></table><%listClasspathProperty("Boot jars", out,"sun.boot.class.path", "Only valid on a sun jvm");listClasspathProperty("System jars", out,"java.class.path", null);listDirpathProperty("Extra system jars", out,"java.ext.dirs", null);listContextPath("Webapp jars", out, "/WEB-INF/lib", null);// identify the container...String container=this.getServletContext().getServerInfo();if (container.startsWith("Tomcat Web Server/3.2")) {    String home=System.getProperty("tomcat.home");    if(home!=null) {        listDirectory("Tomcat 3.2 Common Jars", out,                      home+File.separator                      +"lib",                      null);    }} else if (container.startsWith("Tomcat Web Server/3.3")) {    String home=System.getProperty("tomcat.home");    if(home!=null) {        listDirectory("Tomcat 3.3 Container Jars", out,                      home+File.separator                      +"lib"+File.separator                      +"container",                      null);        listDirectory("Tomcat 3.3 Common Jars", out,                      home+File.separator                      +"lib"+File.separator                      +"common",                      null);    }} else if (container.startsWith("Apache Tomcat/4.0")) {    //handle catalina common dir    String home=System.getProperty("catalina.home");    if(home!=null) {        listDirectory("Tomcat 4.0 Common Jars", out,                      home+File.separator                      +"common"+File.separator                      +"lib",                      null);    }} else if (container.startsWith("Apache Tomcat/4.1")) {    //handle catalina common dir    String home=System.getProperty("catalina.home");    if(home!=null) {        listDirectory("Tomcat 4.1 Common Jars", out,                      home+File.separator                      +"shared"+File.separator                      +"lib",                      null);    }} else if (System.getProperty("resin.home")!=null) {    String home=System.getProperty("resin.home");    if(home!=null) {        listDirectory("Resin Common Jars", out,                      home+File.separator                      +"lib",                      null);    }    } else if (System.getProperty("weblogic.httpd.servlet.classpath")!=null) {    listClasspathProperty("Weblogic Servlet Jars", out,                  "weblogic.httpd.servlet.classpath",                  null);} else {    //TODO: identify more servlet engine classpaths.}%></body></html>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区三区在线观看视频| 国产精品久久久久一区二区三区共| 久久综合色8888| 最新高清无码专区| 久久99精品久久只有精品| 色又黄又爽网站www久久| 日韩欧美aaaaaa| 亚洲高清视频在线| 99久久精品一区| 久久夜色精品国产噜噜av | 日韩一级免费一区| 国产欧美日产一区| 日韩国产欧美一区二区三区| 99精品久久99久久久久| 国产午夜精品理论片a级大结局 | 在线91免费看| 亚洲私人影院在线观看| 国产成人aaa| 亚洲精品一区二区三区四区高清| 天天影视涩香欲综合网| 色婷婷精品久久二区二区蜜臀av| 国产精品毛片久久久久久久| 国产自产视频一区二区三区 | 成人福利视频在线看| 欧美sm美女调教| 奇米精品一区二区三区在线观看 | 国产一区二区视频在线播放| 91精品国产丝袜白色高跟鞋| 亚洲一区二区五区| 色吧成人激情小说| 一区二区欧美精品| 欧美丝袜丝交足nylons| 亚洲高清在线精品| 欧美日韩视频不卡| 天天色综合成人网| 日韩一区二区精品葵司在线| 免费人成精品欧美精品| 日韩欧美中文字幕一区| 欧美aa在线视频| 精品福利一二区| 国产一区二区三区久久久| 26uuu精品一区二区三区四区在线| 久久成人麻豆午夜电影| 精品国产凹凸成av人导航| 国模无码大尺度一区二区三区| 精品少妇一区二区三区免费观看| 毛片av一区二区三区| 精品国产一区二区亚洲人成毛片| 国产成人av电影在线观看| 欧美高清在线精品一区| 色综合色狠狠天天综合色| 亚洲香肠在线观看| 日韩一区二区三区视频| 国产一二三精品| 国产精品少妇自拍| 欧洲av一区二区嗯嗯嗯啊| 水蜜桃久久夜色精品一区的特点| 日韩小视频在线观看专区| 国产麻豆视频精品| 综合网在线视频| 欧美精品一二三| 国产精品综合视频| 亚洲激情男女视频| 日韩视频免费直播| 成人午夜电影久久影院| 亚洲午夜精品17c| 欧美精品一区二区三区视频| 波多野洁衣一区| 三级欧美在线一区| 国产精品久久久久aaaa| 欧美乱妇23p| 国产成人福利片| 香蕉久久一区二区不卡无毒影院| 精品免费一区二区三区| 色综合中文字幕国产 | 99国产精品久久久久久久久久| 亚洲最新视频在线观看| 久久亚洲综合色一区二区三区| 色94色欧美sute亚洲线路一ni| 久久99久久99小草精品免视看| 最近日韩中文字幕| 久久一区二区视频| 欧美日韩高清一区| 91在线视频播放地址| 国产在线一区观看| 午夜免费久久看| 国产精品理论片在线观看| 日韩一区二区精品在线观看| 一本大道久久a久久综合婷婷| 国产自产视频一区二区三区| 午夜精品国产更新| 国产精品国产三级国产有无不卡| 精品少妇一区二区三区在线播放 | bt欧美亚洲午夜电影天堂| 男女视频一区二区| 亚洲国产视频在线| 国产精品不卡一区二区三区| 久久婷婷成人综合色| 欧美日本不卡视频| 欧美无砖砖区免费| 色噜噜狠狠成人网p站| 成人性生交大片免费| 狠狠色综合播放一区二区| 麻豆精品视频在线观看视频| 午夜久久久久久久久| 亚洲一二三专区| 亚洲蜜臀av乱码久久精品蜜桃| 日本一区二区三区视频视频| xf在线a精品一区二区视频网站| 欧美日韩亚洲国产综合| 色老综合老女人久久久| 91视频一区二区三区| 91在线云播放| 色综合中文字幕国产 | 日本精品一区二区三区高清| av激情亚洲男人天堂| 高清av一区二区| 国产福利一区二区三区视频在线 | 日韩成人av影视| 日日夜夜免费精品视频| 日韩av中文在线观看| 另类专区欧美蜜桃臀第一页| 蜜臀av国产精品久久久久| 蜜臂av日日欢夜夜爽一区| 日日嗨av一区二区三区四区| 丝袜美腿高跟呻吟高潮一区| 免费在线一区观看| 国产一区二区不卡| 成人午夜精品一区二区三区| 色综合久久88色综合天天6 | 国产精品99久| av亚洲产国偷v产偷v自拍| 色狠狠桃花综合| 91精品婷婷国产综合久久| 日韩一区二区在线看片| 26uuuu精品一区二区| 国产精品久久久久久亚洲伦| 亚洲精品日日夜夜| 天天射综合影视| 国产麻豆精品视频| 色综合天天性综合| 777xxx欧美| 国产偷国产偷亚洲高清人白洁| 国产精品麻豆网站| 性久久久久久久| 国产99久久久国产精品潘金网站| av网站一区二区三区| 在线观看91av| 国产欧美精品一区| 亚洲一区二区三区不卡国产欧美| 久久99日本精品| 99久久久无码国产精品| 欧美日韩一卡二卡三卡| 日韩免费观看2025年上映的电影| 中文字幕第一区二区| 午夜伦理一区二区| av午夜一区麻豆| 日韩一级大片在线观看| 亚洲欧美中日韩| 美洲天堂一区二卡三卡四卡视频 | 国产综合色在线| 欧美综合一区二区| 久久久一区二区三区| 亚洲综合一二三区| 国产精品538一区二区在线| 色噜噜久久综合| 国产农村妇女精品| 日产精品久久久久久久性色| 成人av电影观看| 2021久久国产精品不只是精品| 亚洲精品福利视频网站| 国产成人在线观看| 欧美一区二区三区白人| 一区二区三区在线观看欧美| 国产精品18久久久久久久网站| 欧美肥大bbwbbw高潮| 亚洲欧美综合另类在线卡通| 国产精品自在欧美一区| 日韩欧美国产一区二区三区| 一区二区三区91| 91社区在线播放| 久久综合九色综合久久久精品综合| 亚洲h动漫在线| 在线免费不卡电影| 亚洲日本va在线观看| 成人ar影院免费观看视频| 久久综合久久鬼色| 国内精品国产三级国产a久久| 在线播放中文字幕一区| 一区二区三区精品| 色94色欧美sute亚洲线路一ni| 最新日韩av在线| 成人av高清在线| 亚洲欧洲日韩av| 99久久久久久99| 亚洲视频在线一区二区| 色综合天天狠狠| 一区二区三区91| 精品视频在线视频| 天天av天天翘天天综合网色鬼国产|