pp_crz_coder

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

2017年9月2日

摘要: 1. SQL Paging Statement: different database has different paging statment MySQL: LIMIT M,N M: the start index, starts from 0 N: the items amout of eac 阅读全文
posted @ 2017-09-02 23:12 ppcoder 阅读(127) 评论(0) 推荐(0) 编辑

2017年8月24日

摘要: JDBC( Java Data Base Connectivity ) is one of the technique of JavaEE. How to use JDBC to query the data in the table and print the data in the consol 阅读全文
posted @ 2017-08-24 23:25 ppcoder 阅读(151) 评论(0) 推荐(0) 编辑

2017年8月19日

摘要: SQL(Structure Query Language): connect the client and the sql server. How to login the server? input the command in cmd: mysql -u root -p ****** The D 阅读全文
posted @ 2017-08-19 20:09 ppcoder 阅读(200) 评论(0) 推荐(0) 编辑

2017年8月9日

摘要: Express Language: replace the function of <%= ..... %> in JSP. The grammar of EL: ${ EL content }: <%= 1+1 %> equals ${ 1+1 } Where to get the data vi 阅读全文
posted @ 2017-08-09 20:41 ppcoder 阅读(104) 评论(0) 推荐(0) 编辑

2017年7月27日

摘要: 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 阅读(105) 评论(0) 推荐(0) 编辑

2017年7月26日

摘要: 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 阅读(146) 评论(0) 推荐(0) 编辑

2017年7月23日

摘要: 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 阅读(472) 评论(0) 推荐(0) 编辑

2017年7月16日

摘要: 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 阅读(126) 评论(0) 推荐(0) 编辑

2017年7月15日

摘要: 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 阅读(212) 评论(0) 推荐(0) 编辑

2017年7月14日

摘要: 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 阅读(100) 评论(0) 推荐(0) 编辑