发送或显示带有特殊字符的文本从我的webservice发送到我的数据库时遇到麻烦.在我的
eclipse中,我将字符编码设置为UTF-8,但仍然不允许我显示字符.例如一个简单的打印像下面的代码
String test ="привет"; System.out.println(test);
要么
String test ="привет"; String query = "insert into communication (`test`) VALUES ('"+ test +"'); PreparedStatement preparedStmt1 = con.prepareStatement(query); preparedStmt1.executeUpdate();