在JSP里面编程时,如何根据条件输出数据库中的某一行的内容啊?
例如,有一张表如下:我想根据所选id来输出这一行对应的所有信息,我知道怎么把所有的id号输出来,程序如下:<%@pagelanguage="java"contentTyp...
例如,有一张表如下:
我想根据所选id来输出这一行对应的所有信息,
我知道怎么把所有的id号输出来,程序如下:
<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="GBK"%>
<%@page import="java.sql.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Insert title here</title>
</head>
<body>
<%
String name;
Connection con = null;
Statement sm = null;
ResultSet rs = null;
try
{
Class.forName("org.postgresql.Driver").newInstance();
String url="jdbc:postgresql://localhost/Anti-fatigue Design";
String user="postgres";
String password="123456";
con = DriverManager.getConnection(url,user,password);
sm = con.createStatement();
rs = sm.executeQuery("select*from iron");
while(rs.next())
{
name=rs.getString("id");
double Name=Double.parseDouble(name);
out.println(Name);
}
}
catch(Exception e)
{
e.printStackTrace();
}
finally{
if(rs!=null)
{
try{rs.close();}catch(Exception e){e.printStackTrace();}
}
if(sm!=null)
{
try{sm.close();}catch(Exception e){e.printStackTrace();}
}
if(con!=null)
{
try{con.close();}catch(Exception e){e.printStackTrace();}
}
}
%>
</body>
</html>
问题:请问我该怎么修改以上所编写程序呢?哪位大神帮忙指点一下啊? 展开
我想根据所选id来输出这一行对应的所有信息,
我知道怎么把所有的id号输出来,程序如下:
<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="GBK"%>
<%@page import="java.sql.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Insert title here</title>
</head>
<body>
<%
String name;
Connection con = null;
Statement sm = null;
ResultSet rs = null;
try
{
Class.forName("org.postgresql.Driver").newInstance();
String url="jdbc:postgresql://localhost/Anti-fatigue Design";
String user="postgres";
String password="123456";
con = DriverManager.getConnection(url,user,password);
sm = con.createStatement();
rs = sm.executeQuery("select*from iron");
while(rs.next())
{
name=rs.getString("id");
double Name=Double.parseDouble(name);
out.println(Name);
}
}
catch(Exception e)
{
e.printStackTrace();
}
finally{
if(rs!=null)
{
try{rs.close();}catch(Exception e){e.printStackTrace();}
}
if(sm!=null)
{
try{sm.close();}catch(Exception e){e.printStackTrace();}
}
if(con!=null)
{
try{con.close();}catch(Exception e){e.printStackTrace();}
}
}
%>
</body>
</html>
问题:请问我该怎么修改以上所编写程序呢?哪位大神帮忙指点一下啊? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询