分享
 
 
 

解决中文问题的几个常用的函数

王朝java/jsp·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

针对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("ProgressBar.font",font);

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("PasswordFiled.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("ToolTip.font",font);

UIManager.put("Tree.font",font);

针对jsp和servlet:

在jsp页面加入:

<%@ page contentType="text/html; charset=gb2312" %>

或者在servlet里面

public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

response.setContentType("text/html; charset=gb2312");//这是重要的

上面的如果在不行就用如下的方法在数据入库前进行调用:

public static String UnicodeToChinese(String s){

try{

if(s==null||s.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==null||s.equals("")) return "";

String newstring=null;

newstring=new String(s.getBytes("gb2312"),"ISO8859_1");

return newstring;

}

catch(UnsupportedEncodingException e)

{

return s;

}

}

解决weblogic/webshpere中文问题:

在web.xml文件中需要配置中文环境。r如下:

<context-param>

<param-name>weblogic.httpd.inputCharset./*</param-name>

<param-value>GB2312</param-value>

</context-param>

javamail附件中文乱码:

/*

@从BodyPart中提取使用ISO-8859-1编吗的文件名

@因为BodyPart.getFilename()过程已经对文件名作了一次编码,有时不能直接使用

*/

public static String getISOFileName(Part body){

//设置一个标志,判断文件名从Content-Disposition中获取还是从Content-Type中获取

boolean flag=true;

if(body==null){

return null;

}

String[] cdis;

try{

cdis=body.getHeader("Content-Disposition");

}

catch(Exception e){

return null;

}

if(cdis==null){

flag=false;

}

if(!flag){

try{

cdis=body.getHeader("Content-Type");

}

catch(Exception e){

return null;

}

}

if(cdis==null){

return null;

}

if(cdis[0]==null){

return null;

}

//从Content-Disposition中获取文件名

if(flag){

int pos=cdis[0].indexOf("filename=");

if(pos<0){

return null;

}

//如果文件名带引号

if(cdis[0].charAt(cdis[0].length()-1)==´"´){

return cdis[0].substring(pos+10,cdis[0].length()-1);

}

return cdis[0].substring(pos+9,cdis[0].length());

}

else{

int pos=cdis[0].indexOf("name=");

if(pos<0){

return null;

}

//如果文件名带引号

if(cdis[0].charAt(cdis[0].length()-1)==´"´){

return cdis[0].substring(pos+6,cdis[0].length()-1);

}

return cdis[0].substring(pos+5,cdis[0].length());

}

}

字符串分割:

public int getCount(String str,String sign){//查找某一字符串中str,特定子串s的出现次数

if(str==null) return 0;

StringTokenizer s=new StringTokenizer(str,sign);

return s.countTokens();

}

public String[] getArray(String str,String sign){//按特定子串s为标记,将子串截成数组。

int count=getCount(str,sign);

int j=0;

String[] arr=new String[count];

for(int i=0;i<count;i++){

if(str.indexOf(sign)!=-1){

j =str.indexOf(sign);

arr[i]=str.substring(0,j);

str =str.substring(j+1);

}else{

arr[i]=str;

}

}

return arr;

}

jdk1.3没有字符串替换函数,(jdk1.4有)。

解决1.3中的个这个问题如下:

public String stringReplace(String sourceString, String toReplaceString, String replaceString)

{

String returnString = sourceString;

int stringLength = 0;

if(toReplaceString != null)

{

stringLength = toReplaceString.length();

}

if(returnString != null && returnString.length() > stringLength)

{

int max = 0;

String S4 = "";

for(int i = 0; i < sourceString.length(); i++)

{

max = i + toReplaceString.length() > sourceString.length()? sourceString.length():i + stringLength;

String S3 = sourceString.substring(i, max);

if(!S3.equals(toReplaceString))

{

S4 += S3.substring(0,1);

}else{

S4 += replaceString;

i += stringLength -1 ;

}

}

returnString = S4;

}

return returnString;

}

设置weblogic连接池:

pool的配置:

假设已配置服务:expserv

且数据库服务器机器名为:expserv

数据库sid:expservSID,用户名和密码都为:expserv

以weblogic7.0为例,首先启动服务

http://localhost:port/console

打开service\jdbc\connection pools

配置oraclePool如下:

Configuration:

Name: oraclePool

URL: jdbc:oracle:thin:@expserv:1521:expservSID

Driver Classname: oracle.jdbc.driver.OracleDriver

Properties(key=value): user=expserv

Targets:

Targets-Server:expserv

在weblogic7.0中除了数据库密码,其他的pool参数都可以在config.xml中直接用文本编辑器直接修改。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有