-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPictureDisplay.java
More file actions
70 lines (62 loc) · 2.06 KB
/
PictureDisplay.java
File metadata and controls
70 lines (62 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package servlet;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import beans.Picture;
import dao.PictureDAO;
/**
* Servlet implementation class PictureDisplay
*/
@WebServlet("/PictureDisplay")
public class PictureDisplay extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public PictureDisplay() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
String id=request.getParameter("id");
int photoID=Integer.parseInt(id);
//daoの生成
PictureDAO pd=new PictureDAO();
//写真データを取得する
Picture picture=pd.editPicture(photoID);
//コンテントタイプの設定
response.setContentType(picture.getContextType());
//バイトアレイインプットストリーム生成
ByteArrayInputStream bais=new ByteArrayInputStream(picture.getPhoto());
//サーブレットアウトプットストリームの取得
ServletOutputStream sos=response.getOutputStream();
try {
byte[]buf=new byte[1024];
int len;
while((len=bais.read(buf))>0) {
sos.write(buf,0,len);
}
}catch(IOException e) {
e.printStackTrace();
}finally {
bais.close();
sos.close();
}
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response);
}
}