如何将BufferedImage输出到jsp页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将BufferedImage输出到jsp页面相关的知识,希望对你有一定的参考价值。
参考技术A 用ImageIO类输出Jsp / MySQL-将SELECT查询的输出存储到字符串中?
这是我的选择查询
("SELECT firstName FROM user WHERE username = username;")
如何将其存储到字符串变量中,以便在jsp页面上输出?
编辑:我跑的代码
string firstname;
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/contacts","root","root");
Statement stmt=con.createStatement();
ResultSet rs=stmt.executeQuery("SELECT firstName FROM user WHERE username = username;");
while(rs.next()) {
fname=new String(rs.getString(1));
System.out.println("First Name:"+firstname);
con.close();
}
}
catch(Exception e){
System.out.println(e);
}
答案
查询错了,就像SELECT firstName FROM user
。您需要将userName
设置为参数。
PreparedStatement stmt=con.prepareStatement("SELECT firstName FROM user WHERE username = ?;");
stmt.setString(1, userName);
ResultSet rs=stmt.executeQuery();
if(rs.next()) {
fname=new String(rs.getString(1));
System.out.println("First Name:"+firstname);
}
以上是关于如何将BufferedImage输出到jsp页面的主要内容,如果未能解决你的问题,请参考以下文章