String departmentName = request.getParameter("dept_name");
departmentName = new String(departmentName.getBytes(Charset.forName("UTF8")),"UTF8");
System.out.println(departmentName);//O/p: composés
在 Windows 中,显示的输出是我所期望的,它还获取了部门名称匹配条件的记录。
但在 Linux 中它返回“compos??s”,所以我的数据库查询失败。
谁能给我解决方案?