-1
myspaceデータベースから次のServletメソッドを使用してイメージバイトを取得します。jspでイメージを表示するには
イメージバイトをjspページに表示します。
私のjspページでimgタグを使用する方法を教えてください。
public byte[] getProfilePicture(int id) {
byte[] bytes = null;
try {
connection = dataSource.getConnection();
pst = connection.prepareStatement("SELECT profile_picture FROM users WHERE id = '"+id+"' ");
resultSet = pst.executeQuery();
while(resultSet.next()) {
bytes = resultSet.getBytes("profile_picture");
}
} catch(Exception e) {
e.printStackTrace();
}
return bytes;
}
おかげで、私はあなたの親切な応答を待っています。