资源简介
这是我的一个期末项目,是关于Javaweb的,主要实现的功能是用户的注册,用户的登陆,和连接数据库时的检验数据是否存在,和将数据写入数据库。
代码片段和文件信息
package edu.njpi.info.soft;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
@WebServlet(“/CheckCode“)
public class CheckCode extends HttpServlet {
protected void doGet(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
// TODO Auto-generated method stub
request.setCharacterEncoding(“utf-8“);
String inCode = request.getParameter(“input_code“);
HttpSession session = request.getSession();
int result = 0;
if(session.getAttribute(“code“).toString().equalsIgnoreCase(inCode)){
result = 1;
}
response.setCharacterEncoding(“utf-8“);
response.setContentType(“text“);
PrintWriter out = response.getWriter();
out.println(result);
out.flush();
}
protected void doPost(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
// TODO Auto-generated method stub
doGet(request response);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-27 14:24 exam\
文件 1455 2017-12-28 21:37 exam\.classpath
文件 904 2017-12-27 14:24 exam\.project
目录 0 2017-12-27 14:43 exam\.settings\
文件 567 2017-12-27 14:24 exam\.settings\.jsdtscope
文件 72 2017-12-28 21:48 exam\.settings\org.eclipse.core.resources.prefs
文件 364 2017-12-27 14:24 exam\.settings\org.eclipse.jdt.core.prefs
文件 464 2017-12-27 14:24 exam\.settings\org.eclipse.wst.common.component
文件 345 2017-12-27 14:24 exam\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2017-12-27 14:24 exam\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2017-12-27 14:24 exam\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2017-12-28 23:31 exam\WebContent\
文件 1148 2017-12-28 18:44 exam\WebContent\LoginSuccess.jsp
目录 0 2017-12-27 23:34 exam\WebContent\me
文件 1033 2017-12-27 15:01 exam\WebContent\me
文件 39 2017-12-27 14:24 exam\WebContent\me
目录 0 2017-12-28 19:51 exam\WebContent\WEB-INF\
目录 0 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\
文件 231320 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\commons-beanutils-1.8.0.jar
文件 575389 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\commons-collections-3.2.1.jar
文件 279193 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\commons-lang-2.5.jar
文件 60686 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\commons-logging-1.1.1.jar
文件 86487 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\ezmorph-1.0.6.jar
文件 159123 2017-12-28 21:36 exam\WebContent\WEB-INF\lib\json-lib-2.4-jdk15.jar
文件 584207 2017-12-27 17:00 exam\WebContent\WEB-INF\lib\sqljdbc4.jar
文件 652 2017-12-28 21:50 exam\WebContent\WEB-INF\web.xm
文件 2120 2017-12-28 21:55 exam\WebContent\ajax.jsp
文件 1639 2017-12-28 19:50 exam\WebContent\index.js
文件 2083 2017-12-28 18:06 exam\WebContent\infojieshou.jsp
文件 268039 2017-12-28 21:46 exam\WebContent\jquery-3.2.1.js
文件 559 2017-12-27 15:02 exam\WebContent\login.jsp
............此处省略35个文件信息
相关资源
- Java Web项目开发案例精粹15-个人理财管
- Java Web项目开发案例精粹13-仓库管理系
- JavaWeb课程设计_清爽夏日九宫格日志网
- Java 从入门到精通全程笔记(JavaSE+J
- javaWeb 客户信息管理系统
- 基于 Servlet+jsp+mysql 开发 javaWeb 学生宿
- sztj_javaweb_07.zip
- java web开发的购物系统,购物网站,电
- Javaweb做的员工管理系统
- java web校园二手交易平台网站
- javaweb网上书城源码(包含数据库)
- JavaWeb医药管理系统235615
- 基于JavaWeb的论坛项目
- JavaWeb课设--网上商城购物.zip
- JavaWeb 系统共享跨域cookie的实现
- 学生教务管理系统JavaWeb+Mysql
- JAVAWEB大作业报告书
- 利用JavaWeb开发出来的《企业宣传网站
- 基于javaweb的日记网
- JavaWeb校园宿舍管理系统.zip
- JavaWeb SQL 超市管理系统
- JavaWEB 图书购物车管理系统源码
- 自行车租赁管理系统
- JAVAWEB_项目开发_网上订餐系统
- 九宫格日记网
- javaWeb博客系统
- 基于JavaEE的商城系统
- javaweb编程体验BBS论坛源代码
- 基于JavaWeb的博客网站的设计与实现论
- 基于javaweb人脸识别
评论
共有 条评论