⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readproductphoto.java

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 JAVA
字号:
package tarena.servlet;

import java.io.IOException;
import java.sql.Blob;
import java.sql.SQLException;

import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import tarena.dao.PhotoDAO;
import tarena.entity.Photo;
/**
 * 读取商品图片。
 * 2008-11-3
 * @author		达内科技[Tarena Training Group]
 * @version	1.0
 * @since		JDK1.6(建议) 
 */
@SuppressWarnings("serial")
public class ReadProductPhoto extends HttpServlet {

	/**
	 * The doGet method of the servlet. <br>
	 *
	 * This method is called when a form has its tag value method equals to get.
	 * 
	 * @param request the request send by the client to the server
	 * @param response the response send by the server to the client
	 * @throws ServletException if an error occurred
	 * @throws IOException if an error occurred
	 */
	public void service(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		int productid=Integer.parseInt(request.getParameter("id"));
		int photoid=Integer.parseInt(request.getParameter("pid"));
		
		response.setContentType("image/jpeg");
		ServletOutputStream out=response.getOutputStream();
		PhotoDAO pdao = new PhotoDAO();
		Photo p =  pdao.findByIds(productid, photoid);
		Blob blob=p.getImage();
		if(blob==null){
			blob=pdao.findById(3).getImage();
		}

		try {
			out.write(blob.getBytes(1, (int)blob.length()));
		} catch (SQLException e) {
			e.printStackTrace();
		}
		
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -