public class Ce { public static void main(String[] args) throws Exception {
String bbb = "中国会展信息网";// 乱码内容 //UTF-8 ,gb2312 String aaaa = new String(bbb.getBytes("gb2312"), "utf-8"); System.out.println(aaaa); //怎么把aaaa 再转回   中国会展信息网
                   //填补代码?
}}采用的eclipse的开发环境 编码是UTF-8?Java