国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Java中文問題集錦

2019-11-18 14:30:48
字體:
來源:轉載
供稿:網友

  解決java中文問題:
  針對applet和awt:
  1.
  Font f = new Font(UIResource.getString( "Default_font"),Font.PLAIN,12);
  UIManager.put("Label.font",f);
  UIManager.put("Label.foreground",Color.black);
  UIManager.put("Button.font",f);
  UIManager.put("Menu.font",f);
  UIManager.put("MenuItem.font",f);
  UIManager.put("List.font",f);
  UIManager.put("CheckBox.font",f);
  UIManager.put("RadioButton.font",f);
  UIManager.put("ComboBox.font",f);
  UIManager.put("TextArea.font",f);
  
  2.
  Font f = new Font("隸書",Font.PLAIN,15);
  UIManager.put("Button.font",font);
  UIManager.put("ToggleButton.font",font);
  UIManager.put("RadioButton.font",font);
  UIManager.put("CheckBox.font",font);
  UIManager.put("ColorChooser.font",font);
  UIManager.put("ToggleButton.font",font);
  UIManager.put("ComboBox.font",font);
  UIManager.put("ComboBoxItem.font",font);
  UIManager.put("InternalFrame.titleFont",font);
  UIManager.put("Label.font",font);
  UIManager.put("List.font",font);
  UIManager.put("MenuBar.font",font);
  UIManager.put("Menu.font",font);
  UIManager.put("MenuItem.font",font);
  UIManager.put("RadioButtonMenuItem.font",font);
  UIManager.put("CheckBoxMenuItem.font",font);
  UIManager.put("PopupMenu.font",font);
  UIManager.put("OptionPane.font",font);
  UIManager.put("Panel.font",font);
  UIManager.put("  UIManager.put("ScrollPane.font",font);
  UIManager.put("Viewport",font);
  UIManager.put("TabbedPane.font",font);
  UIManager.put("TableHeader.font",font);
  UIManager.put("TextField.font",font);
  UIManager.put("Pass
WordFiled.font",font);
  UIManager.put("TextArea.font",font);
  UIManager.put("TextPane.font",font);
  UIManager.put("EditorPane.font",font);
  UIManager.put("TitledBorder.font",font);
  UIManager.put("ToolBar.font",font);
  UIManager.put("ToolT  UIManager.put("Tree.font",font);
  
  3.針對
jsp和servlet:
  解決辦法:
  第一:
  1:在jsp頁面加入:
  <%@ page contentType="text/Html; charset=gb2312" %>
  2:在servlet里面:
  public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  response.setContentType("text/html; charset=gb2312");//這是重要的
  
  3:上面的假如在不行就用如下的方法在數據入庫前進行調用:
  public static String UnicodeToChinese(String s){
  try{
  if(s==nulls.equals("")) return "";
  String newstring=null;
  newstring=new String(s.getBytes("ISO8859_1"),"gb2312");
  return newstring;
  }
  catch(UnsupportedEncodingException e)
  {
  return s;
  }
  }
  
  public static String ChineseToUnicode(String s){
  try{
  if(s==nulls.equals("")) return "";
  String newstring=null;
  newstring=new String(s.getBytes("gb2312"),"ISO8859_1");
  return newstring;
  }
  catch(UnsupportedEncodingException e)
  {
  return s;
  }
  }
  
  4.解決weblogic/webshpere中文問題:
  在web.xml文件中需要配置中文環境。r如下:
  <context-param>
  <param-name>weblogic.httpd.inputCharset./*</param-name>
  <param-value>GB2312</param-value>
  </context-param>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 内乡县| 兴安盟| 成都市| 仙桃市| 四川省| 平阳县| 师宗县| 尖扎县| 永福县| 吉隆县| 武乡县| 北安市| 襄垣县| 亚东县| 九江市| 泰宁县| 淮北市| 白银市| 买车| 台中市| 山阳县| 惠安县| 会理县| 遂宁市| 碌曲县| 南丰县| 平邑县| 富顺县| 宾阳县| 额敏县| 襄汾县| 雅江县| 刚察县| 鲁甸县| 顺昌县| 广南县| 吴江市| 泸西县| 砀山县| 嘉鱼县| 四川省|