我想将像饼,alpha等数学符号插入到Mysql数据库表中并检索这些数据,然后打印到jsp页面中。我试过了,但它只显示问号符号......
当我在谷歌搜索时,它告诉我改变为UTF8格式。我无法得到它。这是我的代码
<%
String string1="π";
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://
localhost:3306/test","root","");
Statement st = con.createStatement();
int i = st.executeUpdate("insert into math_string values('"+string1+"')");
String query="select * from math_string";
Statement stmt=con.createStatement();
ResultSet rs=stmt.executeQuery(query);
while(rs.next())
{
%>
<%=rs.getString("String_value") %></td>
<%
}
}