
jsp & servlet
ForKing_
这个作者很懒,什么都没留下…
展开
-
HTTP 中get 和post的区别
GET is a simple request, POST can send user data --get是一个简单的请求 --post 能够发送用户的数据 GET is the simplest HTTP method, and its main job in life is to ask the server to get a resource and send it原创 2013-09-24 11:08:11 · 510 阅读 · 0 评论 -
SqlHelper工具类
package com.wsx.utils; import java.io.*; import java.util.*; import java.sql.*; public class SqlHelper { //定义需要的变量 private static Connection ct=null; private static PreparedStatement ps=null; priv原创 2013-10-28 23:57:28 · 488 阅读 · 0 评论 -
servlet写的验证码
package com.wsx; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.image.BufferedImage; import java.io.IOException; import java.io.PrintWriter; import java.util.R原创 2013-10-30 15:08:45 · 505 阅读 · 0 评论