java面试宝典

zhoung39964 25 0 DOCX 2019-03-08 12:03:56

有关java面试的一些问题Public String translate (String str) { String tempStr = ""; try { tempStr = new String(str.getBytes("ISO-8859-1"), "GBK"); tempStr = tempStr.trim(); } catch (Exception e) { System.err.println(e.getMessage()); } return tempStr; }

用户评论
请输入评论内容
评分:
暂无评论