zoukankan      html  css  js  c++  java
  • Java servlet example

     

    Working on tag support for this blog, I've cut a little sample code out of a Java servlet, and I'm showing it below. I was looking at the HttpServletRequest, and was curious about the difference betweenrequest.getPathInfo()request.getPathTranslated(), and request.getRequestURI(), so I created this demo code. Here's the example code from the servlet:

    String pathInfo = request.getPathInfo();
    String pathTrans = request.getPathTranslated();
    String uri = request.getRequestURI();
    
    System.err.println("pathInfo:  " + pathInfo);
    System.err.println("pathTrans: " + pathTrans);
    System.err.println("uri:       " + uri);
    

      

    And here's the sample output from the servlet, running under Tomcat on my MacBook Pro:

    pathInfo:  /java+mac+foo
    pathTrans: /Users/al/tomcat-4.1.31/webapps/blog/tag/java+mac+foo
    uri:       /blog/tag/java+mac+foo
    

      

    I forgot to mention, the URL I hit to generate this output was http://localhost:8080/blog/tag/java+mac+foo

  • 相关阅读:
    转:PCIe基础知识
    转:HDMI介绍与流程
    Java EJB JBoss
    冒泡排序
    多线程
    快排
    Talk is cheap,show me the code
    oracle union
    Oracle 【to_number】【instr】
    DB 【ACID】
  • 原文地址:https://www.cnblogs.com/hephec/p/4586848.html
Copyright © 2011-2022 走看看