You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: MD5.java
package util;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class StrUtil {
private static int idSequence=10000;
public static String checkStr(Object obj) {
if(obj==null){
return "";
}else{
return obj.toString();
}
}
public synchronized static String generalSrid() {
StringBuffer ret = new StringBuffer(20);
ret.append(StrUtil.getFormatDate("yyyyMMddHHmmss"));
idSequence++;
if(idSequence>20000)
idSequence-=10000;
ret.append(String.valueOf(idSequence).substring(1));
//System.out.println("生成ID="+ret);
return ret.toString();
}
public static String generalFileName(String srcFileName) {
try{
int index=srcFileName.lastIndexOf(".");
return StrUtil.generalSrid()+srcFileName.substring(index).toLowerCase();
}catch(Exception e){
return StrUtil.generalSrid();
}
}
public static String parseOS(String agent) {
String system="Other";
if(agent.indexOf("Windows NT 5.2")!=-1)
system="Win2003";
else if(agent.indexOf("Windows NT 5.1")!=-1)
system="WinXP";
else if(agent.indexOf("Windows NT 5.0")!=-1)
system="Win2000";
else if(agent.indexOf("Windows NT")!=-1)
system="WinNT";
else if(agent.indexOf("Windows 9")!=-1)
system="Win9x";
else if(agent.indexOf("unix")!=-1)
system="unix";
else if(agent.indexOf("SunOS")!=-1)
system="SunOS";
else if(agent.indexOf("BSD")!=-1)
system="BSD";
else if(agent.indexOf("linux")!=-1)
system="linux";
else if(agent.indexOf("Mac")!=-1)
system="Mac";
else
system = "Other";
return system;
}
/**
* 得到当前日期的格式化字符串
*
* @param formatString
* 如yyyy(年)-MM(月)-dd(日)-HH(时)-mm(分)-ss(秒)-SSS(毫秒)
* @return 格式化过的当前日期字符串
*/
public static String getFormatDate(String formatString) {
Date now =new Date(System.currentTimeMillis());
SimpleDateFormat sdf=new SimpleDateFormat(formatString);
String ret=sdf.format(now);
return ret;
}
/**
* @param 无
* @return 当前日期
*/
public static Date getCurrentDate() {
Date now =new Date(System.currentTimeMillis());
return now;
}
/**
* 将格式化的日期字符串转换为日期。
*
* @param formatString
* 如yyyy(年)-MM(月)-dd(日)-HH(时)-mm(分)-ss(秒)-SSS(毫秒)
* @return 字符串转换后的日期。
*/
public static Date formatDate(String dateString) {
try {
SimpleDateFormat sdf=new SimpleDateFormat();
Date date=sdf.parse(dateString);
return date;
} catch (ParseException e) {
return new Date();
}
}
public static int parseInt(String numberStr) {
//Pattern pattern=Pattern.compile("[0-9]*");
//Pattern pattern=Pattern.compile("^[\\-\\d][0-9]*[\\.]{0,1}[0-9]+$");
if(numberStr==null)
return 0;
Pattern pattern=Pattern.compile("^[\\-]{0,1}[0-9]+$");
Matcher matcher = pattern.matcher(numberStr);
if(matcher.find()){
return Integer.parseInt(numberStr);
}else{
return 0;
}
}
}