花间一壶酒

导航

2011年8月22日 #

Why we use HTTP POST instead of HTTP GET

摘要: The total amount of characters in a GET is really limited (depending on the server).If the user types ,say. along passage into a "search" into a box,the Get might not work.The data you send with the GET is appended to the URL up in the browser bar,so whatever you send is exposed.Better not 阅读全文

posted @ 2011-08-22 22:04 wrh526 阅读(126) 评论(0) 推荐(0) 编辑

2011年8月21日 #

Some concepts

摘要: What`s the content of web?The web consists of gazillions of clients(using browsers like Mozilla or IE ) and servers (using web server apps like Apache) connected through wires and wireless networks.What does your web server do ?A web server takes a client request and gives something back to the clie 阅读全文

posted @ 2011-08-21 16:22 wrh526 阅读(148) 评论(0) 推荐(0) 编辑

My first thought of reading this book-《Head First sServlets & JSP》

摘要: The first thing you read this book is to prepare you brain to study.The first work you need to learn this book is to install and config Tomcat.Before I have done a few projects use MyEclipse or Eclipse, In these IDE, I never think how tomcat to start by only click an button.Now without the IDE ,befo 阅读全文

posted @ 2011-08-21 14:57 wrh526 阅读(245) 评论(0) 推荐(0) 编辑

2011年8月17日 #

基本的Map 实现

摘要: Map 是一个接口,实现Map 接口的类颇多,他们各有自己的特点。HashMap :如果没有其他的限制,它应该是你的默认选择,因为它对速度进行了优化。Map基于散列表的实现(它取代了HashTable),插入和查询“键值对”的开销是固定的。可以通过构造器设置容量和负载因子LinkedListMap:类似于HashMap,但是迭代遍历它时,取得“键值对”的顺序是其插入次序,或者是 最近最少使用(LRU)的次序,只比HashMap慢一点;而在迭代访问时反而更快,因为他使用 链表 维护内部次序。TreeMap:基于红黑树的实现。查看“键”或“键值对”时,他们会被排序(次序由Comparable或co 阅读全文

posted @ 2011-08-17 15:32 wrh526 阅读(383) 评论(0) 推荐(0) 编辑

2011年7月23日 #

Java小程序之——判断输入的某个年份是否是闰年

摘要: 编写程序,判断给定的某个年份是否是闰年。闰年的判断规则如下:(1)若某个年份能被4整除但不能被100整除,则是闰年。(2)若某个年份能被400整除,则也是闰年。程序一:package exercise;import java.util.Scanner;import java.util.regex.Matcher;import java.util.regex.Pattern;public class IsLeapYear { public static boolean isNum(String str){ boolean isNum=true; for(int i=0;i<str.leng 阅读全文

posted @ 2011-07-23 19:23 wrh526 阅读(1392) 评论(0) 推荐(1) 编辑

2011年7月11日 #

SSH经常遇到的问题及解决方案

摘要: 我的本科四年,在大四最后的阶段里,我学习了SSH框架,并用它与OpenCV一块做了我的毕业设计——《人脸识别系统的设计与实现》。下面将我在调SSH过程中遇到的问题记录下来。SSH+Tomcat+JSP的技术。 问题1. Address already in use: JVM_Bind <null>:8080 问题原因: 在MyEclipse启动或者是tomcat启动的时候出现:Address already in use: JVM_Bind<null>:8080 出现该异常,这里的8080是你的端口,有可能是80或者其他,但是都是一个原因引起的,我在用MyEclipse 阅读全文

posted @ 2011-07-11 15:48 wrh526 阅读(306) 评论(0) 推荐(0) 编辑

2011年3月28日 #

人脸识别初遇问题

摘要: 经过一个礼拜的忙碌,今天我的人脸识别程序有了初步成果。目前面临的最大的问题,是识别率太低了,。。。。。。。。。。如何改进呢?首先:提高图像的存储大小,但是由于机器速度原因,势必造成速度大幅度的降低。其次:提高算法,减少大的循环次数。。。。提高可能性不是很大。。 阅读全文

posted @ 2011-03-28 16:14 wrh526 阅读(271) 评论(2) 推荐(0) 编辑