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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? fingerprint.jsp

?? Java 寫的一個Web Services
?? 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(getServletConfig().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><%= getServletConfig().getServletContext().getServerInfo() %></td>    <td><%= getServletConfig().getServletContext().getMajorVersion() %></td>    <td><%= getServletConfig().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=getServletConfig().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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
奇米四色…亚洲| 成人av高清在线| 91网站在线观看视频| 国产精品天美传媒| 粉嫩久久99精品久久久久久夜| 久久久电影一区二区三区| 激情av综合网| 亚洲同性gay激情无套| 欧美性受xxxx黑人xyx性爽| 亚洲国产视频一区二区| 欧美日韩dvd在线观看| 免费三级欧美电影| 丝瓜av网站精品一区二区| 日韩美女视频在线| 成人一二三区视频| 久久精品久久精品| 亚洲免费视频中文字幕| 欧美一区二区三区四区五区| 国产乱对白刺激视频不卡| 亚洲综合在线免费观看| 欧美精品一区二区久久久| 99久久精品国产观看| 国内外成人在线视频| 狠狠色狠狠色合久久伊人| 成人性色生活片| 欧美性色黄大片手机版| 91精品午夜视频| 在线观看亚洲一区| 成人激情动漫在线观看| 91麻豆精品秘密| 日韩一区国产二区欧美三区| 91福利资源站| 99在线精品一区二区三区| 狠狠色丁香婷婷综合久久片| 丁香六月久久综合狠狠色| 欧美性三三影院| 国产欧美日韩另类视频免费观看 | 日韩欧美在线1卡| 国产精品网曝门| 蜜臀久久久久久久| 国产精品天天看| 亚洲18女电影在线观看| 亚洲一区二区三区四区五区黄| 国产精品理伦片| 久久久精品国产99久久精品芒果 | 久久综合给合久久狠狠狠97色69| 欧美日韩一区二区三区四区 | 中日韩av电影| 日韩精品一二三| av综合在线播放| 日韩视频一区在线观看| 亚洲视频免费看| 国产一区二区三区电影在线观看| 久久精品国内一区二区三区| 色综合天天综合狠狠| 一本色道久久综合亚洲91| 色婷婷精品大在线视频| 久久综合九色欧美综合狠狠 | 日韩欧美三级在线| 一区二区三区四区中文字幕| 国产精品一级片在线观看| 在线播放日韩导航| 精品国产凹凸成av人网站| 亚洲一区二区三区四区在线| 91一区二区在线| 亚洲国产高清aⅴ视频| 国产精品久线在线观看| 国产黄色成人av| 日本道精品一区二区三区| 国产精品入口麻豆原神| 粉嫩绯色av一区二区在线观看| 精品国产乱码久久| 国产中文一区二区三区| 日韩欧美一区二区在线视频| 日韩黄色一级片| 制服丝袜亚洲色图| 日本不卡1234视频| 欧美一区二区三区人| 日本中文在线一区| 成人黄色软件下载| 国产精品福利影院| 成人性视频免费网站| 亚洲色图制服诱惑| 欧美日韩极品在线观看一区| 亚洲成在线观看| 欧美一区二区三区在线视频| 日本欧美一区二区在线观看| 日韩欧美www| 成人在线综合网站| 一区二区三区四区激情| 欧美性猛交xxxxxx富婆| 同产精品九九九| av高清不卡在线| 夜夜精品视频一区二区| 88在线观看91蜜桃国自产| 看片网站欧美日韩| 国产人成亚洲第一网站在线播放| 成人涩涩免费视频| 夜夜嗨av一区二区三区网页 | 国产女同互慰高潮91漫画| 国产成人av电影| 亚洲一区视频在线| 精品人在线二区三区| 亚洲高清免费视频| ww亚洲ww在线观看国产| 99精品在线免费| 午夜不卡av在线| 久久久久久99精品| 91国偷自产一区二区开放时间 | 日韩在线a电影| 国产欧美日韩精品a在线观看| 91免费版在线| 麻豆专区一区二区三区四区五区| 久久久久国产免费免费 | 日韩精品一二三四| 国产欧美日韩在线观看| 欧美久久久久久久久中文字幕| 国产一区二三区好的| 一区二区三区在线观看国产| 久久影院午夜片一区| 色婷婷综合久久| 国产精品一区二区久久不卡 | 视频一区二区三区在线| 久久精品水蜜桃av综合天堂| 国产一区二区免费看| 亚洲午夜免费视频| 欧美国产精品一区二区三区| 欧美日韩精品久久久| 不卡区在线中文字幕| 免费欧美高清视频| 亚洲小说春色综合另类电影| 日本一区二区综合亚洲| 日韩免费高清视频| 欧美日韩一区二区在线观看视频 | 欧美色图第一页| av电影天堂一区二区在线| 韩国一区二区三区| 日韩高清中文字幕一区| 亚洲国产日日夜夜| 亚洲乱码中文字幕| 91精品国产综合久久香蕉麻豆 | 亚洲国产一区二区三区| 中文字幕一区二区三区乱码在线| 97精品久久久午夜一区二区三区| 久久97超碰色| 中文字幕一区二区视频| 久久婷婷色综合| 日韩欧美在线网站| 日韩欧美亚洲国产另类| 91麻豆精品国产无毒不卡在线观看 | 亚洲高清不卡在线| 一区二区三区在线不卡| 亚洲综合成人网| 亚洲国产精品久久艾草纯爱| 亚洲一区日韩精品中文字幕| 一个色在线综合| 亚洲成av人在线观看| 日韩—二三区免费观看av| 三级成人在线视频| 日韩国产欧美一区二区三区| 午夜成人在线视频| 蜜桃视频在线一区| 裸体健美xxxx欧美裸体表演| 美女网站色91| 国产综合色在线视频区| 国产裸体歌舞团一区二区| 国产精品综合二区| 99精品欧美一区二区三区小说 | 蜜桃视频免费观看一区| 美女精品一区二区| 国产一区二区三区免费看| 国产成人在线视频播放| 91美女精品福利| 欧美日韩国产123区| 精品国产亚洲一区二区三区在线观看| 久久精品免视看| 亚洲综合久久av| 美国三级日本三级久久99| 大美女一区二区三区| 色婷婷亚洲综合| 精品国产一区二区在线观看| 国产精品乱码一区二区三区软件 | 国产一区二区导航在线播放| 高清shemale亚洲人妖| 91美女片黄在线观看91美女| 日韩午夜在线播放| 18欧美亚洲精品| 蜜臀av性久久久久蜜臀aⅴ | 天天色图综合网| 国产精品一区二区三区乱码| 91黄色在线观看| 国产日韩精品视频一区| 婷婷国产在线综合| 粉嫩嫩av羞羞动漫久久久| 欧美日韩日日摸| 国产精品欧美久久久久无广告| 亚洲香蕉伊在人在线观| 国产v日产∨综合v精品视频| 欧美色窝79yyyycom| 国产欧美日韩中文久久|