一个利用jsp在网页中插入数据库图片的简单问题~
我是一个jsp初学者,在学习过程中遇到了一个很菜的问题:工具:MyEclipse+MySQL+TOMCAT。我已经用MySQL建立了数据库,表中的字段包括photo_id...
我是一个jsp初学者,在学习过程中遇到了一个很菜的问题:
工具:MyEclipse+MySQL+TOMCAT。
我已经用MySQL建立了数据库,表中的字段包括photo_id 和pic两项,其中pic中存储的是图片的相对路径,即(/pic/beauty.jpg)。
现在我希望编写jsp,在网页上显示数据库中的图片,代码如下:
<body>
<h3 align = "center">显示图片~</h3>
<center>
<img alt=""src="
<%
try{
Class.forName("com.mysql.JDBC.Driver");
}catch (Exception ex){};
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
try{
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
while(rs.next()){
ServletOutputStream sout = response.getOutputStream();
InputStream in = rs.getBinaryStream(1);
byte b[] = new byte [0x7a120];
for(int i=in.read(b);i!=-1;){
sout.write(b);
in.read(b);
}
sout.flush();
sout.close();
}
}catch(Exception ex){};
%>" width="435" height="275"/>
</center>
</body>
但是在编译后显示出了红叉。
我感觉还是读路径的时候代码有问题,又臭又长而且有exception。。。请问单纯从数据库读取图片路径,并在网页上显示的代码应该怎么写呢?非常感谢,问题很菜,望耐心~
感谢回答,学习了。。。现在我更改了代码,但是地址并没有指向<%%>中的地址,反而直接指向了<>中第一行指令。。。不太明白,望再帮忙解答下。
现代码如下
<body>
<h3 align = "center">显示图片~</h3>
<center>
<TABLE>
<TR>
<TD><img src="
<%
String photoPath="";
Class.forName("com.mysql.JDBC.Driver");
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
while(rs.next()){
photoPath = rs.getString("pic");
response.sendRedirect(photoPath);
}
%>"></img></TD>
</TR>
</TABLE>
</center>
</body> 展开
工具:MyEclipse+MySQL+TOMCAT。
我已经用MySQL建立了数据库,表中的字段包括photo_id 和pic两项,其中pic中存储的是图片的相对路径,即(/pic/beauty.jpg)。
现在我希望编写jsp,在网页上显示数据库中的图片,代码如下:
<body>
<h3 align = "center">显示图片~</h3>
<center>
<img alt=""src="
<%
try{
Class.forName("com.mysql.JDBC.Driver");
}catch (Exception ex){};
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
try{
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
while(rs.next()){
ServletOutputStream sout = response.getOutputStream();
InputStream in = rs.getBinaryStream(1);
byte b[] = new byte [0x7a120];
for(int i=in.read(b);i!=-1;){
sout.write(b);
in.read(b);
}
sout.flush();
sout.close();
}
}catch(Exception ex){};
%>" width="435" height="275"/>
</center>
</body>
但是在编译后显示出了红叉。
我感觉还是读路径的时候代码有问题,又臭又长而且有exception。。。请问单纯从数据库读取图片路径,并在网页上显示的代码应该怎么写呢?非常感谢,问题很菜,望耐心~
感谢回答,学习了。。。现在我更改了代码,但是地址并没有指向<%%>中的地址,反而直接指向了<>中第一行指令。。。不太明白,望再帮忙解答下。
现代码如下
<body>
<h3 align = "center">显示图片~</h3>
<center>
<TABLE>
<TR>
<TD><img src="
<%
String photoPath="";
Class.forName("com.mysql.JDBC.Driver");
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
while(rs.next()){
photoPath = rs.getString("pic");
response.sendRedirect(photoPath);
}
%>"></img></TD>
</TR>
</TABLE>
</center>
</body> 展开
2个回答
展开全部
src="项目根路径"+从数据库读出的相对路径。
不用像你写的那么费劲。
String photoPath = "";
if(rs.next()){
photoPath = rs.getString("pic");
}
你那句sql写的也不对啊,你不是photo_id 和 pic 么,怎么sql里成了photo_no和Image了。
你在显示的红叉上右键属性,看看你打出来的图片路径到底是啥就知道怎么改了。
<%
String photoPath="";
Class.forName("com.mysql.JDBC.Driver");
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
if(rs.next()){//就一条结果,if就行,不用循环
photoPath = rs.getString("image");//你的表中字段叫Image,就里就用image。
//response.sendRedirect(photoPath);不能有这句,要不就跳转了,会报404错误。
}
%>">
<body>
<h3 align = "center">显示图片~</h3>
<center>
<TABLE>
<TR>
<TD><img src="项目根目录/<%=photoPath%>"></img></TD>
</TR>
</TABLE>
</center>
</body>
把“项目根目录”替换了。
不用像你写的那么费劲。
String photoPath = "";
if(rs.next()){
photoPath = rs.getString("pic");
}
你那句sql写的也不对啊,你不是photo_id 和 pic 么,怎么sql里成了photo_no和Image了。
你在显示的红叉上右键属性,看看你打出来的图片路径到底是啥就知道怎么改了。
<%
String photoPath="";
Class.forName("com.mysql.JDBC.Driver");
String URL="jdbc:iworld://localhost:3306/photo?user=root&password=123";
String str="SELECT image FROM photo WHERE photo_no=1";
ResultSet rs = null;
Connection con = DriverManager.getConnection(URL);
Statement stmt = con.createStatement();
rs=stmt.executeQuery(str);
if(rs.next()){//就一条结果,if就行,不用循环
photoPath = rs.getString("image");//你的表中字段叫Image,就里就用image。
//response.sendRedirect(photoPath);不能有这句,要不就跳转了,会报404错误。
}
%>">
<body>
<h3 align = "center">显示图片~</h3>
<center>
<TABLE>
<TR>
<TD><img src="项目根目录/<%=photoPath%>"></img></TD>
</TR>
</TABLE>
</center>
</body>
把“项目根目录”替换了。
展开全部
你好,你可以参考从数据库(mysql)存取图片
为了使用JSP灵活,需要把各种文件储存到数据库中,然后需要的时候把它读取出来显示到客户端。这些文件包括音乐,图片,文本等,人们统称为二进制文件。
首先,二进制文件储存到数据库的过程:打开文件,将内容读到缓冲区,然后直接联线创建jdbc语句对象,使用该缓冲区的数据,并执行更新,就完成了储存。
例子:
首先在mysql中创建一个表 picture_db
create table picture_db(
file_name varchar(255) not null,
content longblob,
primary key (file_name));
接下来就是用java写储存文件的代码:
假设要储存的图片名称是:01.jpg (放在同一个目录下)
import java.sql.*;
import java.io.*;
import java.nio.*;
public class UploadImage {
protected Connection dbConnection;
protected String driverName = "com.mysql.jdbc.Driver";
protected String dbURL = "jdbc:mysql://localhost:3306/sample_db";
protected String userID = "root";
protected String passwd = "yourpassword";
public boolean storeImage(String sqlstr,File file){
try{
FileInputStream fin = new FileInputStream(file);
ByteBuffer nbf = ByteBuffer.allocate((int)file.length());
byte[] array = new byte[1024];
int offset =0,length=0;
while((length=fin.read(array))>0){
if(length!=1024)
nbf.put(array,0,length);
else
nbf.put(array);
offset+=length;
}
fin.close();
byte[] content = nbf.array();
return setImage(sqlstr,content);
}catch(FileNotFoundException e){
e.printStackTrace();
}catch (IOException e){
e.printStackTrace();
}
return false;
}
private boolean setImage(String sqlstr,byte[]in){
boolean flag = false;
if(sqlstr==null)
sqlstr="select * from picture_db";
try{
Class.forName(driverName);
dbConnection = DriverManager.getConnection(dbURL,userID,passwd);
Statement stmt = dbConnection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery(sqlstr);
if(rs.next()){
rs.updateBytes(2,in);
rs.updateRow();
}
else{
rs.moveToInsertRow();
rs.updateString(1,"01");
rs.updateBytes(2,in);
rs.insertRow();
}
rs.close();
flag=true;
}catch(Exception e){
e.printStackTrace();
}
return flag;
}
public static void main(String[] args){
UploadImage upload = new UploadImage();
try{
File file = new File("01.jpg");
if(upload.storeImage(null, file))
System.out.print("ture");
else
System.out.print("False");
}catch(Exception e){
e.printStackTrace();
}
}
}
如果执行成功的话,系统打印“true" 否则“false".
最后就是将图片度取出来:与储存的过程相反,它是县建立连接,创建数据库查询的jdbc对象,使用该语句来返回二进制结果,保存到文件当中。
showImage.jsp
<%@ page contentType = "image/jpeg;charset=GB2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.io.*"%>
<%@ page import="com.sun.image.codec.jpeg.*"%>
<%@ page import="javax.imageio.*"%>
<%@ page import="java.awt.image.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="image/jpeg;charset=GB2312">
<title>showDBImage</title>
</head>
<body>
<%
String showImage ="select * from picture_db where file_name ='01'";
Connection conn = null;
BufferedInputStream inputImage = null;
String driverName = "com.mysql.jdbc.Driver";
String dbURL = "jdbc:mysql://localhost:3306/sample_db";
String userID = "root";
String passwd = "yourpassword";
try{
Class.forName(driverName).newInstance();
conn = DriverManager.getConnection(dbURL,userID,passwd);
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery(showImage);
while(rs.next()){
Blob blob = (Blob)rs.getBlob("content");
inputImage = new BufferedInputStream(blob.getBinaryStream());
}
BufferedImage image = null;
image = ImageIO.read(inputImage);
ServletOutputStream sos = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
encoder.encode(image);
inputImage.close();
}catch(SQLException e)
{
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
%>
</body>
</html>
不足之处在于:每次只能储存一张图片,好像还不能储存两张图片,它总是覆盖掉前面的那一张即使图片的文字不一样。如果感兴趣的朋友,帮我测试以下。谢谢。还有,如果我想储存多张图片,该如何呢?
为了使用JSP灵活,需要把各种文件储存到数据库中,然后需要的时候把它读取出来显示到客户端。这些文件包括音乐,图片,文本等,人们统称为二进制文件。
首先,二进制文件储存到数据库的过程:打开文件,将内容读到缓冲区,然后直接联线创建jdbc语句对象,使用该缓冲区的数据,并执行更新,就完成了储存。
例子:
首先在mysql中创建一个表 picture_db
create table picture_db(
file_name varchar(255) not null,
content longblob,
primary key (file_name));
接下来就是用java写储存文件的代码:
假设要储存的图片名称是:01.jpg (放在同一个目录下)
import java.sql.*;
import java.io.*;
import java.nio.*;
public class UploadImage {
protected Connection dbConnection;
protected String driverName = "com.mysql.jdbc.Driver";
protected String dbURL = "jdbc:mysql://localhost:3306/sample_db";
protected String userID = "root";
protected String passwd = "yourpassword";
public boolean storeImage(String sqlstr,File file){
try{
FileInputStream fin = new FileInputStream(file);
ByteBuffer nbf = ByteBuffer.allocate((int)file.length());
byte[] array = new byte[1024];
int offset =0,length=0;
while((length=fin.read(array))>0){
if(length!=1024)
nbf.put(array,0,length);
else
nbf.put(array);
offset+=length;
}
fin.close();
byte[] content = nbf.array();
return setImage(sqlstr,content);
}catch(FileNotFoundException e){
e.printStackTrace();
}catch (IOException e){
e.printStackTrace();
}
return false;
}
private boolean setImage(String sqlstr,byte[]in){
boolean flag = false;
if(sqlstr==null)
sqlstr="select * from picture_db";
try{
Class.forName(driverName);
dbConnection = DriverManager.getConnection(dbURL,userID,passwd);
Statement stmt = dbConnection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery(sqlstr);
if(rs.next()){
rs.updateBytes(2,in);
rs.updateRow();
}
else{
rs.moveToInsertRow();
rs.updateString(1,"01");
rs.updateBytes(2,in);
rs.insertRow();
}
rs.close();
flag=true;
}catch(Exception e){
e.printStackTrace();
}
return flag;
}
public static void main(String[] args){
UploadImage upload = new UploadImage();
try{
File file = new File("01.jpg");
if(upload.storeImage(null, file))
System.out.print("ture");
else
System.out.print("False");
}catch(Exception e){
e.printStackTrace();
}
}
}
如果执行成功的话,系统打印“true" 否则“false".
最后就是将图片度取出来:与储存的过程相反,它是县建立连接,创建数据库查询的jdbc对象,使用该语句来返回二进制结果,保存到文件当中。
showImage.jsp
<%@ page contentType = "image/jpeg;charset=GB2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.io.*"%>
<%@ page import="com.sun.image.codec.jpeg.*"%>
<%@ page import="javax.imageio.*"%>
<%@ page import="java.awt.image.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="image/jpeg;charset=GB2312">
<title>showDBImage</title>
</head>
<body>
<%
String showImage ="select * from picture_db where file_name ='01'";
Connection conn = null;
BufferedInputStream inputImage = null;
String driverName = "com.mysql.jdbc.Driver";
String dbURL = "jdbc:mysql://localhost:3306/sample_db";
String userID = "root";
String passwd = "yourpassword";
try{
Class.forName(driverName).newInstance();
conn = DriverManager.getConnection(dbURL,userID,passwd);
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery(showImage);
while(rs.next()){
Blob blob = (Blob)rs.getBlob("content");
inputImage = new BufferedInputStream(blob.getBinaryStream());
}
BufferedImage image = null;
image = ImageIO.read(inputImage);
ServletOutputStream sos = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
encoder.encode(image);
inputImage.close();
}catch(SQLException e)
{
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
%>
</body>
</html>
不足之处在于:每次只能储存一张图片,好像还不能储存两张图片,它总是覆盖掉前面的那一张即使图片的文字不一样。如果感兴趣的朋友,帮我测试以下。谢谢。还有,如果我想储存多张图片,该如何呢?
参考资料: http://blog.chinaunix.net/u/21684/showart_207071.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询