当前位置:首页 > java初学者必读-经验总结
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(\ 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()); } }
8:字符串分割:
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 arr[i]=str; } } return arr; } 9: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; } 9:设置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中直接用文本编辑器直接修改 10:数字转货币大写(js) function ChangeToBig(value) { var intFen,i; var strArr,strCheck,strFen,strDW,strNum,strBig,strNow;
共分享92篇相关文档