jsp参考大全及源代码(jsp的代码)

  • 1、jsp技术的验证码源代码?
  • 2、jsp登陆界面源代码
  • 3、jsp 中网站的首页源代码

实际当中很少用这种纯JSP的验证码技术,缺乏安全性,下面有一个这样的纯JSP的例,参考别人的,你可以看看。

纯数字验证码

在JSP页面body区域编写如下代码:

导入java.awt.*,java.awt.image.BufferedImage,javax.imageio.ImageIO包

%

   //验证码边框的长高

   int width = 60;

   int height = 20;

   //用RGB模式输出图像区域

   BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

   //定义画笔

   Graphics graph = image.getGraphics();

   //设置验证码框背景色0-255

   graph.setColor(new Color(200, 200, 200));

   //填充矩形

   graph.fillRect(0, 0, width, height);

   //产生1000-9999之间的随机数

   Random rnd = new Random();

   int rndNum = rnd.nextInt(8999) + 1000;

   //此处为何转换为String型的用int型的效果一样?

   String rndStr = String.valueOf(rndNum);

   session.setAttribute(“rndStr”, rndNum);

   //设置矩形区域中随机数及干扰点的颜色

   graph.setColor(Color.RED);

   //设置随机数的字体大小

   graph.setFont(new Font(“”,Font.PLAIN,20));

   //在已有的矩形区域中绘制随机数

   graph.drawString(rndStr, 8, 17);

   //随机产生100个干扰点

   for (int i = 0; i  100; i++)

   {

    int x = rnd.nextInt(width);

    int y = rnd.nextInt(height);

    //设置干扰点的位置长宽

    graph.drawOval(x, y, 1, 1);

   }

   //将图像输出到页面上

   ImageIO.write(image, “JPEG”, response.getOutputStream());

   //清空缓冲区

   out.clear();

   out = pageContext.pushBody();

  %

1、login.jsp文件

%@ page language=”java” contentType=”text/html; charset=GB18030″

pageEncoding=”GB18030″%

%@ page import=”java.util.*” %

!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”

html

head

title登录页面/title

/head

body

form name=”loginForm” method=”post” action=”judgeUser.jsp”

table

tr

td用户名:input type=”text” name=”userName” id=”userName”/td

/tr

tr

td密码:input type=”password” name=”password” id=”password”/td

/tr

tr

tdinput type=”submit” value=”登录” style=”background-color:pink” input

type=”reset” value=”重置” style=”background-color:red”/td

/tr

/table

/form

/body

/html

2、judge.jsp文件

%@ page language=”java” contentType=”text/html; charset=GB18030″

pageEncoding=”GB18030″%

%@ page import=”java.util.*” %

!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”

html

head

title身份验证/title

/head

body

%

request.setCharacterEncoding(“GB18030”);

String name = request.getParameter(“userName”);

String password = request.getParameter(“password”);

if(name.equals(“abc”) password.equals(“123”)) {

3、afterLogin.jsp文件

%

jsp:forward page=”afterLogin.jsp”

jsp:param name=”userName” value=”%=name%”/

/jsp:forward

%

}

else {

%

jsp:forward page=”login.jsp”/

%

}

%

/body

/html

%@ page language=”java” contentType=”text/html; charset=GB18030″

pageEncoding=”GB18030″%

!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”

html

head

title登录成功/title

/head

body

%

request.setCharacterEncoding(“GB18030”);

String name = request.getParameter(“userName”);

out.println(“欢迎你:” + name);

%

/body

/html

扩展资料:

java web登录界面源代码:

1、Data_uil.java文件

import java.sql.*;

public class Data_uil

{

public  Connection getConnection()

{

try{

Class.forName(“com.microsoft.sqlserver.jdbc.SQLServerDriver”);

}catch(ClassNotFoundException e)

{

e.printStackTrace();

}

String user=”***”;

String password=”***”;

String url=”jdbc:sqlserver://127.0.0.1:1433;DatabaseName=***”;

Connection con=null;

try{

con=DriverManager.getConnection(url,user,password);

}catch(SQLException e)

{

e.printStackTrace();

}

return con;

}

public  String selectPassword(String username)

{

Connection connection=getConnection();

String sql=”select *from login where username=?”;

PreparedStatement preparedStatement=null;

ResultSet result=null;

String password=null;

try{

preparedStatement=connection.prepareStatement(sql);

preparedStatement.setString(1,username);

result=preparedStatement.executeQuery();//可执行的     查询

if(result.next())

password=result.getString(“password”);

}catch(SQLException e){

e.printStackTrace();

}finally

{

close(preparedStatement);

close(result);

close(connection);

}

System.out.println(“找到的数据库密码为:”+password);

return password; 

}

public  void close (Connection con)

{

try{

if(con!=null)

{

con.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

public  void close (PreparedStatement preparedStatement)

{

try{

if(preparedStatement!=null)

{

preparedStatement.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

public  void close(ResultSet resultSet)

{

try{

if(resultSet!=null)

{

resultSet.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

}

2、login_check.jsp:文件

%@ page language=”java” contentType=”text/html; charset=utf-8″

pageEncoding=”utf-8″%

!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “”

html

head

meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″

title验证用户密码/title

/head

body

jsp:useBean id=”util” class=”util.Data_uil” scope=”page” /

%

String username=(String)request.getParameter(“username”);

String password=(String)request.getParameter(“password”);

if(username==null||””.equals(username))

{

out.print(“script language=’javaScript’ alert(‘用户名不能为空’);/script”);

response.setHeader(“refresh”, “0;url=user_login.jsp”);

}

else

{

System.out.println(“输入的用户名:”+username);

String passwordInDataBase=util.selectPassword(username);

System.out.println(“密码:”+passwordInDataBase);

if(passwordInDataBase==null||””.equals(passwordInDataBase))

{

out.print(“script language=’javaScript’ alert(‘用户名不存在’);/script”);

response.setHeader(“refresh”, “0;url=user_login.jsp”);

}

else if(passwordInDataBase.equals(password))

{

out.print(“script language=’javaScript’ alert(‘登录成功’);/script”);

response.setHeader(“refresh”, “0;url=loginSucces.jsp”);

}

else

{

out.print(“script language=’javaScript’ alert(‘密码错误’);/script”);

response.setHeader(“refresh”, “0;url=user_login.jsp”);

}

}

%

/body

/html

3、loginSucces.jsp文件

%@ page language=”java” contentType=”text/html; charset=utf-8″

pageEncoding=”utf-8″%

!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “”

html

head

meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″

titleInsert title here/title

/head

body

hr size=”10″ width=”26%” align=”left” color=”green”

font size=”6″ color=”red” 登录成功 /font

hr size=”10″ width=”26%” align=”left” color=”green”

/body

/html

4、user_login.jsp文件

%@ page language=”java” contentType=”text/html; charset=utf-8″

pageEncoding=”utf-8″%

!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “”

html

head

meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″

title登录界面/title

/head

body  background=”C:\Users\win8\workspace\Login\image\9dcbdc339e72a5663b5c289fb5573c13_10.jpg”

center

brbrbrbrbrbr

h1 style=”color:yellow”Login/h1

br

form name=”loginForm” action=”login_check.jsp” method=”post” 

table Border=”0″

tr

td账号/td

tdinput type=”text” name=”username”/td

/tr

tr

td密码/td

tdinput type=”password” name=”password”

/td

/tr

/table

br

input type=”submit” value=”登录” style=”color:#BC8F8F”

/form

/center

/body

/html

这是最简单的一个例子,数据库要你自己建,用的是ACCESS

%@ page contentType=”text/html; charset=gb2312″ language=”java” import=”java.sql.*” errorPage=”” %

html

head

meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″

titleJSP连接Access数据库/title

style type=”text/css”

!–

.style1 {

font-size: 20px;

font-weight: bold;

}

/style

/headbody

div align=”center” class=”style1″JSP连接Access数据库/div

br

hr

p%

Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”); //载入驱动程序类别

Connection con = DriverManager.getConnection(“jdbc:odbc:jspdata”); //建立数据库链接,jspdata为ODBC数据源名称

//建立Statement对象

Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,

ResultSet.CONCUR_READ_ONLY);

ResultSet rs = stmt.executeQuery(“select * from lyb”); //建立ResultSet(结果集)对象,并执行SQL语句

%

/p

p align=”center”NUMB1数据表中记录如下/p

table width=”640″ border=”1″ align=”center” bordercolor=”#7188e0″

tr bgcolor=”d1d1ff”

th width=”49″编号/th

th width=”90″姓名/th

th width=”126″E-mail/th

th width=”221″网站/th

th width=”80″QQ/th

/tr

%

while(rs.next())

{

%

tr bgcolor=”#f8f8f8″

th%= rs.getString(1) %/th

th%= rs.getString(2) %/th

th%= rs.getString(3) %/th

th bgcolor=”#f6f6f8″%= rs.getString(4) %/th

th%= rs.getString(5) %/th

/tr

%

}

rs.close();

stmt.close();

con.close();

%

/table

p align=”center”br

如果您能看到表格中的数据,说明连接数据库成功!/p

/body

/html

原创文章,作者:R7EL6,如若转载,请注明出处:https://www.506064.com/n/126767.html

汽车小知识 小米SU7 今日油价 油耗计算器 电耗计算器 购置税计算器 贷款计算器 保险计算器 交通违章代码 体育新闻
(0)
R7EL6R7EL6
上一篇 2024-10-03 23:12
下一篇 2024-10-03 23:13

相关推荐

  • Groovy脚本详解

    Groovy是一种基于JVM的动态编程语言,既能像Java一样使用,也能像脚本一样使用。它融合了Java语言的优秀特性和脚本语言的特点,具有强大的面向对象编程能力和简洁的脚本语法。…

    编程 2024-10-03
  • jstatgc占用cpu,jstat gc

    本文目录一览: 1、记一次线上机器CPU飙高的排查过程 2、jvm 性能调优工具之 jstat 命令详解 3、cpu飙升怎么排查 4、使用jstat命令会影响java进程吗 5、L…

    编程 2024-10-04
  • pythonrange(pythonrange函数用法)

    1、python中range函数 2、python中range()函数的用法 3、Python中range()函数的用法 4、python中的range函数 5、Python内置函…

    编程 2024-10-03
  • 为列表添加符号?

    一、背景 列表在网页中经常用到,最常见的形式就是无序列表和有序列表。无序列表使用圆点、方块或其他符号来标记列表项,而有序列表使用数字或字母来标记。在实际开发中,如何有效地为列表添加…

    编程 2024-10-12
  • python推荐系统案例(python推荐软件)

    1、用python怎样构建一个推荐系统 2、python中有哪些简单的算法? 3、想要自学python,有什么好的学习方法推荐? Linux下图形一般都有qt和gtk两种形式,做界…

    编程 2024-10-03
  • 包含pythonstrings转json的词条

    1、【Python】浅谈python中的json 2、python3 对象 |字典|json|yaml|字符串 相互转化 3、python 字符串转 json 4、python字符…

  • c与java类的一些区别(c++的类和java的类区别)

    1、C语言和Java的区别是什么? 2、c语言和java的区别是什么? 3、Java和C的区别 4、c语言和java的区别 5、C语言和JAVA有什么区别? 6、c语言和java的…

    编程 2024-10-03
  • Spring Boot集成Redis

    Redis是一个开源的内存数据存储系统,常用于缓存和消息传递。它支持字符串、哈希表、列表、集合、有序集合的数据类型,并且支持事务、Lua脚本、LRU淘汰等特性。在Spring Bo…

    编程 2024-10-04
  • Java的基本类型

    Java是一门强类型语言,每个变量都必须先声明其类型,再赋予具体的值。Java的基本类型包括整型、浮点型、字符型、布尔型以及一些特殊类型,如void和null。 一、整型 整型表示…

    编程 2024-10-04
  • SQLiteC++全能编程开发指南

    SQLiteC++是一种流行的SQLite C/C++接口,提供了优雅的封装和API来轻松管理数据库。本文将介绍如何使用SQLiteC++创建、添加、查询和更新数据库。我们将从SQ…

    编程 2024-10-04

发表回复

登录后才能评论