1.jsp登陆界面源代码
2.Python接口自动化-requests模块之post请求
3.Laravel 通过 Request 对象的源码 post() 方法可以获取 JSON 数据的源码分析
jsp登陆界面源代码
1、login.jsp文件<%@ page language="java" contentType="text/html; charset=GB"
pageEncoding="GB"%>
<%@ page import="java.util.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4. 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>
<td><input 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=GB"
pageEncoding="GB"%>
<%@ page import="java.util.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4. Transitional//EN">
<html>
<head>
<title>身份验证</title>
</head>
<body>
<%
request.setCharacterEncoding("GB");
String name = request.getParameter("userName");
String password = request.getParameter("password");
if(name.equals("abc")&& password.equals("")) {
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=GB"
pageEncoding="GB"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4. Transitional//EN">
<html>
<head>
<title>登录成功</title>
</head>
<body>
<%
request.setCharacterEncoding("GB");
String name = request.getParameter("userName");
out.println("欢迎你:" + name);
%>
</body>
</html>
扩展资料:
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://.0.0.1:;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. Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<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. Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO--1">
<title>Insert title here</title>
</head>
<body>
<hr size="" width="%" align="left" color="green">
<font size="6" color="red" >登录成功 </font>
<hr size="" width="%" 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. Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO--1">
<title>登录界面</title>
</head>
<body background="C:\Users\win8\workspace\Login\image\9dcbdceab5cfbc_.jpg" >
<center>
<br><br><br><br><br><br>
<h1 style="color:yellow">Login</h1>
<br>
<form name="loginForm" action="login_check.jsp" method="post">
<table Border="0" >
<tr >
<td>账号</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>密码</td>
<td><input type="password" name="password">
</td>
</tr>
</table>
<br>
<input type="submit" value="登录" style="color:#BC8F8F">
</form>
</center>
</body>
</html>
Python接口自动化-requests模块之post请求
在探讨Python接口自动化时,源码requests模块在处理HTTP请求方面扮演了重要角色。源码在上篇文章中,源码我们详细介绍了requests模块及其get请求的源码使用。本文将聚焦于requests模块中的源码post请求。 一、源码源码解析 在处理post请求时,源码我们首先需要理解其参数解析机制。源码php寺院源码post请求允许我们向服务器发送数据,常见于表单提交、发送JSON数据等场景。 二、data与json的区别 小伙伴们在面对如何选择使用data还是json参数时,可能会感到困惑。其实,网络穿透 源码选择的关键在于请求头中的content-type类型。 举例说明,若使用data参数,通常意味着请求数据以表单形式(application/x-www-form-urlencoded)发送。反之,若content-type为application/json,则应使用json参数,minix源码下载以确保数据以JSON格式传输。 三、form形式发送post请求 假设当前接口接受类型为application/x-www-form-urlencoded的数据,我们通过正确的参数格式发送post请求,如上文所示。 四、json形式发送post请求 同样,easy ui 源码当接口要求应用类型为application/json时,我们需确保数据以JSON格式传递。若选择使用data参数而未转换为JSON字符串,可能会导致请求失败。 总结,本文阐述了post请求的源码解析、data与json参数的应用场景及实战操作。为了提升实践能力,读者可以利用公司项目或在线资源进行实际操作。 未来,我们将深入探讨接口自动化中cookie、session的原理与应用。对于感兴趣的读者,欢迎关注微信公众号:ITester软件测试小栈,获取更多测试相关资讯。Laravel 通过 Request 对象的 post() 方法可以获取 JSON 数据的源码分析
Laravel通过Request对象的post()方法获取JSON数据的源码分析
在入口文件中,调用Request::capture()方法获取请求对象。
capture()方法进一步调用自身的createFromBase($globals)方法,获取所有请求信息。
createFromBase()方法通过getInputSource()获取所有请求参数。
getInputSource()方法判断请求数据是否为JSON格式。如果是,则直接返回JSON数据;否则返回查询参数或请求体数据。
json()方法对获取的请求内容进行解码,最终返回一个ParameterBag对象,方便开发者进一步操作和使用JSON数据。
2024-11-06 12:23602人浏览
2024-11-06 11:352128人浏览
2024-11-06 11:10818人浏览
2024-11-06 10:26655人浏览
2024-11-06 10:222743人浏览
2024-11-06 10:201967人浏览
1.C# 中的源代码生成器2.什么叫底层代码?C# 中的源代码生成器 本文探讨了C#中的源代码生成器,它革新了代码生成方式,使其成为编译过程的内在部分,不再依赖外部工具。C# 9引入的源代码生成器
中国消费者报北京讯记者贾珺)为维护公平竞争的市场环境,提高全社会反垄断合规意识和风险识别能力,助力经济高质量发展,北京市市场监管局于近日发布《北京市反垄断合规指引》以下简称《合规指引》),从中小经营者
內政部昨日7/15)公布都市地價總指數調查報告,其中以桃園縣上升5.79%排名第一,研判與五楊高架建設完工及機場捷運建設帶動地價上漲有關。