我们有一个 Web 应用程序,可以在其中插入俄语字符,在 mysql 数据库中它看起来像这样 ДоÑÑ,авка груза。但是当在网上查看时以俄语字符形式正确显示。但是,当我们在 Java 应用程序中执行此操作时,它会以这种格式显示 ДоÑÑ,авка груза? 有什么帮助吗?
部分java代码如下。
Statement stmt1 = null;
//System.out.println("\n\nSELECT selectOTACommand : "+selectOTACommand);
String select1 = "Select locName from tblLoc where locID=2280"
ResultSet rs1= stmt1.executeQuery(select1);
while(rs1.next())
{
System.out.println("Loc Name : "+rs1.getString("locName"));
}
try{
if ( rs1 != null ){
rs1.close();
}
else{
System.out.println("MyError:rs1 is null in finally close");
}
if ( stmt1 != null ){
stmt1.close();
}
else{
System.out.println("MyError:stmt1 is null in finally close");
}
}
catch(SQLException ex){
System.out.println("MyError:SQLException has been caught for stmt1 close");
ex.printStackTrace(System.out);
}