按键四;2;输入条件后接收条件与输出

Posted can丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按键四;2;输入条件后接收条件与输出相关的知识,希望对你有一定的参考价值。

<%@ page language="java" import="java.util.*" import="java.sql.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP ‘delete_stu_2.jsp.jsp‘ starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>
<head><title>利用提交条件删除记录页面</title></head>
<body>
<%
String driverName="com.mysql.jdbc.Driver";
String dbName="MyLogin";
String userName="root";
String userPwd="lovezjl";
String url1="jdbc:mysql://localhost:3306/MyLogin";
String url2="?user=root&password=lovezjl";
String url3="&useUnicode=true&characterEncoding=UTF-8";
String url=url1+url2+url3;
Class.forName(driverName);
Connection conn=DriverManager.getConnection(url);
request.setCharacterEncoding("UTF-8");

String ss1=request.getParameter("s11");
String sql="delete from student_xinxi1 where sushe=‘"+ss1+"‘";
PreparedStatement stmt=conn.prepareStatement(sql);
int n=stmt.executeUpdate();
if(n==1){%>数据删除操作成功!<br><%}
else {%>数据删除操作失败!<br><%}
if(stmt!=null){stmt.close();}
if(conn!=null){conn.close();}
%>
<style type="text/css">
body{
background:url("image/444.jpg");
background-size:100%;
}
</style>
</body>
</html>

以上是关于按键四;2;输入条件后接收条件与输出的主要内容,如果未能解决你的问题,请参考以下文章

python基础知识--条件判断和循环

按键三,2,按条件 输入数据后

统计学习四:1.朴素贝叶斯

可能的竞争条件,来自多个 tee 接收者的管道输出在 BASH 脚本中的命名管道上无序到达

python循环条件判断

I2C 从机发送完数据后,接收不到主机(接收到倒数第二个数据后)发送的停止条件