jsp 连接 oracle
制作一个登录界面,数据库oracle用于验证用户的有效性(用户名和密码)conn.jsp文件该怎么写?在登录界面的jsp文件中又该如何操作?请大侠多多指教!...
制作一个登录界面,数据库oracle用于验证用户的有效性(用户名和密码)
conn.jsp文件该怎么写?
在登录界面的jsp文件中又该如何操作?
请大侠多多指教! 展开
conn.jsp文件该怎么写?
在登录界面的jsp文件中又该如何操作?
请大侠多多指教! 展开
3个回答
展开全部
conn.jsp
<%
String url= "jdbc:oracle:thin:@数据库机器名或IP:1521:数据库实例名";
Connection con=null;
String user=request.getParameter("userName");
String password=request.getParameter("password");
try
{
Class.forName(forname);
con =DriverManager.getConnection(url,user,password);
out.write("连接成功!");
}
catch(Exception e)
{
e.printStackTrace();
out.write("连接失败!");
}
%>
login.jsp
<form name='frm' action='conn.jsp'>
用户名:<input type="text" name="userName">
密码:<input type="password" name="password">
<input type="submit" value="确定">
</form>
<%
String url= "jdbc:oracle:thin:@数据库机器名或IP:1521:数据库实例名";
Connection con=null;
String user=request.getParameter("userName");
String password=request.getParameter("password");
try
{
Class.forName(forname);
con =DriverManager.getConnection(url,user,password);
out.write("连接成功!");
}
catch(Exception e)
{
e.printStackTrace();
out.write("连接失败!");
}
%>
login.jsp
<form name='frm' action='conn.jsp'>
用户名:<input type="text" name="userName">
密码:<input type="password" name="password">
<input type="submit" value="确定">
</form>
展开全部
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@china3ct:1521:Master";
//china3ct为你的数据库的SID
String user="system";
String password="zsk";
Connection conn= DriverManager.getConnection(url,user,password);
try{
Statement stmt=conn.createStatement();
String sql="select username, password from usertable";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {
if(rs.getString(1).equals(登录界面传来登录时输入的用户名)%){
if(rs.getString(2).equals(登录界面传来登录时输入的密码)){
out.print("数据库操作成功,恭喜你");
}else{
out.print("密码错误!");
}
}else{
out.print("您输入的用户名不存在!");
}
}
}catch(Exception e)
{
System.out.print e;
}finally{
rs.close();
stmt.close();
conn.close();
}
%>
</body>
</html>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@china3ct:1521:Master";
//china3ct为你的数据库的SID
String user="system";
String password="zsk";
Connection conn= DriverManager.getConnection(url,user,password);
try{
Statement stmt=conn.createStatement();
String sql="select username, password from usertable";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {
if(rs.getString(1).equals(登录界面传来登录时输入的用户名)%){
if(rs.getString(2).equals(登录界面传来登录时输入的密码)){
out.print("数据库操作成功,恭喜你");
}else{
out.print("密码错误!");
}
}else{
out.print("您输入的用户名不存在!");
}
}
}catch(Exception e)
{
System.out.print e;
}finally{
rs.close();
stmt.close();
conn.close();
}
%>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
邮箱给我发你源代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询