pp_crz_coder

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

07 2017 档案

摘要:Cookie > browser Session > server When a client access to a server, there will be some data in this process, the server should save these data. How to 阅读全文
posted @ 2017-07-27 16:50 ppcoder 阅读(112) 评论(0) 推荐(0)

摘要:JSP(Java Server Page) which display the page of server also a servlet in essence. The JSP could write java code in a html page. JSP = Java + HTML In t 阅读全文
posted @ 2017-07-26 21:35 ppcoder 阅读(157) 评论(0) 推荐(0)

摘要:For the request and response: request > HttpServletRequest response > HttpServletResponse Every request send by browser will create a new request obje 阅读全文
posted @ 2017-07-23 21:15 ppcoder 阅读(489) 评论(0) 推荐(0)

摘要:Servlet is a java code run in the server such as Tomcat. How to create a servlet? 1.Create a class extends HttpServlet (or implements the Servlet inte 阅读全文
posted @ 2017-07-16 02:57 ppcoder 阅读(138) 评论(0) 推荐(0)

摘要:HTTP(Hyper Text Transfer Protocol) is managed by W3C institute. There are two versions 1.0 and 1.1. The version 1.1 is used widely. But what's the dif 阅读全文
posted @ 2017-07-15 16:39 ppcoder 阅读(225) 评论(0) 推荐(0)

摘要:Tomcat is a free server. The detail of Tomcat directory structure: bin --> include some batch file and jar file. For example : the start and shutdown 阅读全文
posted @ 2017-07-14 18:52 ppcoder 阅读(112) 评论(0) 推荐(0)

摘要:The Xpath's javadoc could be got from the Dom4j's javadoc. There are some simple regulation you must follow: 1.When you want to use specific single no 阅读全文
posted @ 2017-07-13 18:30 ppcoder 阅读(195) 评论(0) 推荐(0)

摘要:@Tets @After @Before 阅读全文
posted @ 2017-07-12 12:35 ppcoder 阅读(103) 评论(0) 推荐(0)

摘要:Different from DOM parser, the SAX parser will parse the file from one node to another. There are several methods are common used in SAX parser: start 阅读全文
posted @ 2017-07-12 12:02 ppcoder 阅读(155) 评论(0) 推荐(0)

摘要:We can see that when we want to use the Dom4j to parse XML , we should import org.dom4j.* At the same time ,that to parse XML by DOM ,we should import 阅读全文
posted @ 2017-07-10 20:54 ppcoder 阅读(171) 评论(0) 推荐(0)

摘要:Dom4j is a powerful and common tool to parse the xml file.DOM(Document Object Model) There are two main stream in parsing xml file:DOM and SAX Let me 阅读全文
posted @ 2017-07-10 17:20 ppcoder 阅读(158) 评论(0) 推荐(0)

摘要:Today I reviewed the xml part. Xml's full name is Extensible Markup Language which produced from SGML(Standard Generalized Markup Language). Why do yo 阅读全文
posted @ 2017-07-08 22:05 ppcoder 阅读(120) 评论(0) 推荐(0)

摘要:The reflect part has many advantages.I heard that reflect is widely used in many frames. In this part: 1.Common method to get Class object: a)Class cl 阅读全文
posted @ 2017-07-06 17:11 ppcoder 阅读(119) 评论(0) 推荐(0)

摘要:OK,after not master the javamail well, Im so eager to start the journey to review the JavaEE part. I can see that so many projects needs the base of s 阅读全文
posted @ 2017-07-06 15:20 ppcoder 阅读(120) 评论(0) 推荐(0)