`
tangkuo
  • 浏览: 100985 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论
阅读更多
package com.iec.web.utils;

import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.math.BigDecimal;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.security.CodeSource;
import java.security.MessageDigest;
import java.security.ProtectionDomain;
import java.security.SecureRandom;
import java.sql.Timestamp;
import java.text.ParseException;
import java.text.ParsePosition;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Collection;
import java.util.Date;
import java.util.Map;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import javax.servlet.http.HttpServletRequest;

import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import sun.misc.BASE64Encoder;

/**
* 常见的辅助类
*
* @author shell
* @since 2013-12-30
*/
public class Utils {

    private static Log log = LogFactory.getLog(Utils.class);

    /**
     * DES算法密钥
     */
    private static final byte[] DES_KEY = { 21, 1, -110, 82, -32, -85, -128,
    -65 };

    private static String HanDigiStr[] = new String[] { "零", "壹", "贰", "叁",
    "肆", "伍", "陆", "柒", "捌", "玖" };

    private static String HanDiviStr[] = new String[] { "", "拾", "佰", "仟", "万",
    "拾", "佰", "仟", "亿", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿", "拾",
    "佰", "仟", "万", "拾", "佰", "仟" };

    /**
     * 判断对象是否Empty(null或元素为0)<br>
     * 实用于对如下对象做判断:String Collection及其子类 Map及其子类
     *
     * @param pObj
     *            待检查对象
     * @return boolean 返回的布尔值
     */
    public static boolean isEmpty(Object pObj) {
if (pObj == null) {
    return true;
}
if (pObj == "") {
    return true;
}
if (pObj instanceof String) {
    if (((String) pObj).length() == 0) {
return true;
    }
} else if (pObj instanceof Collection) {
    if (((Collection) pObj).size() == 0) {
return true;
    }
} else if (pObj instanceof Map) {
    if (((Map) pObj).size() == 0) {
return true;
    }
}
return false;
    }

    /**
     * 判断对象是否为NotEmpty(!null或元素>0)<br>
     * 实用于对如下对象做判断:String Collection及其子类 Map及其子类
     *
     * @param pObj
     *            待检查对象
     * @return boolean 返回的布尔值
     */
    public static boolean isNotEmpty(Object pObj) {
if (pObj == null) {
    return false;
}
if (pObj == "") {
    return false;
}
if (pObj instanceof String) {
    if (((String) pObj).length() == 0) {
return false;
    }
} else if (pObj instanceof Collection) {
    if (((Collection) pObj).size() == 0) {
return false;
    }
} else if (pObj instanceof Map) {
    if (((Map) pObj).size() == 0) {
return false;
    }
}
return true;
    }

    /**
     * 判断一个字符串是否由数字、字母、数字字母组成
     *
     * @param pStr
     *            需要判断的字符串
     * @param pStyle
     *            判断规则
     * @return boolean 返回的布尔值
     */
    public static boolean isTheStyle(String pStr, String pStyle) {
for (int i = 0; i < pStr.length(); i++) {
    char c = pStr.charAt(i);
    if (pStyle.equals(Constants.S_STYLE_N)) {
if (!Character.isDigit(c)) {
    return false;
}
    } else if (pStyle.equals(Constants.S_STYLE_L)) {
if (!Character.isLetter(c)) {
    return false;
}
    } else if (pStyle.equals(Constants.S_STYLE_NL)) {
if (Character.isLetterOrDigit(c)) {
    return false;
}
    }
}
return true;
    }

    /**
     * JavaBean之间对象属性值拷贝
     *
     * @param pFromObj
     *            Bean源对象
     * @param pToObj
     *            Bean目标对象
     */
    public static void copyPropBetweenBeans(Object pFromObj, Object pToObj) {
if (pToObj != null) {
    try {
BeanUtils.copyProperties(pToObj, pFromObj);
    } catch (Exception e) {
log.error("==开发人员请注意:==\n JavaBean之间的属性值拷贝发生错误啦!"
+ "\n详细错误信息如下:");
e.printStackTrace();
    }
}
    }

    /**
     * 将JavaBean对象中的属性值拷贝到Dto对象
     *
     * @param pFromObj
     *            JavaBean对象源
     * @param pToDto
     *            Dto目标对象
     */
    // public static void copyPropFromBean2Dto(Object pFromObj, Dto pToDto) {
    // if (pToDto != null) {
    // try {
    // pToDto.putAll(BeanUtils.describe(pFromObj));
    // // BeanUtils自动加入了一个Key为class的键值,故将其移除
    // pToDto.remove("class");
    // } catch (Exception e) {
    // log.error("==开发人员请注意:==\n 将JavaBean属性值拷贝到Dto对象发生错误啦!"
    // + "\n详细错误信息如下:");
    // e.printStackTrace();
    // }
    // }
    // }

    /**
     * 将传入的身份证号码进行校验,并返回一个对应的18位身份证
     *
     * @param personIDCode
     *            身份证号码
     * @return String 十八位身份证号码
     * @throws 无效的身份证号
     */
    public static String getFixedPersonIDCode(String personIDCode)
    throws Exception {
if (personIDCode == null) {
    throw new Exception("输入的身份证号无效,请检查");
}

if (personIDCode.length() == 18) {
    if (isIdentity(personIDCode)) {
return personIDCode;
    } else {
throw new Exception("输入的身份证号无效,请检查");
    }
} else if (personIDCode.length() == 15) {
    return fixPersonIDCodeWithCheck(personIDCode);
} else {
    throw new Exception("输入的身份证号无效,请检查");
}
    }

    /**
     * 修补15位居民身份证号码为18位,并校验15位身份证有效性
     *
     * @param personIDCode
     *            十五位身份证号码
     * @return String 十八位身份证号码
     * @throws 无效的身份证号
     */
    public static String fixPersonIDCodeWithCheck(String personIDCode)
    throws Exception {
if ((personIDCode == null) || (personIDCode.trim().length() != 15)) {
    throw new Exception("输入的身份证号不足15位,请检查");
}

if (!isIdentity(personIDCode)) {
    throw new Exception("输入的身份证号无效,请检查");
}

return fixPersonIDCodeWithoutCheck(personIDCode);
    }

    /**
     * 修补15位居民身份证号码为18位,不校验身份证有效性
     *
     * @param personIDCode
     *            十五位身份证号码
     * @return 十八位身份证号码
     * @throws 身份证号参数不是15位
     */
    public static String fixPersonIDCodeWithoutCheck(String personIDCode)
    throws Exception {
if ((personIDCode == null) || (personIDCode.trim().length() != 15)) {
    throw new Exception("输入的身份证号不足15位,请检查");
}

String id17 = personIDCode.substring(0, 6) + "19"
+ personIDCode.substring(6, 15); // 15位身份证补'19'

char[] code = { '1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2' }; // 11个校验码字符
int[] factor = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 }; // 18个加权因子
int[] idcd = new int[18];
int sum; // 根据公式 ∑(ai×Wi) 计算
int remainder; // 第18位校验码
for (int i = 0; i < 17; i++) {
    idcd[i] = Integer.parseInt(id17.substring(i, i + 1));
}
sum = 0;
for (int i = 0; i < 17; i++) {
    sum = sum + (idcd[i] * factor[i]);
}
remainder = sum % 11;
String lastCheckBit = String.valueOf(code[remainder]);
return id17 + lastCheckBit;
    }

    /**
     * 判断是否是有效的18位或15位居民身份证号码
     *
     * @param identity
     *            18位或15位居民身份证号码
     * @return 是否为有效的身份证号码
     */
    public static boolean isIdentity(String identity) {
if (identity == null) {
    return false;
}
if ((identity.length() == 18) || (identity.length() == 15)) {
    String id15 = null;
    if (identity.length() == 18) {
id15 = identity.substring(0, 6) + identity.substring(8, 17);
    } else {
id15 = identity;
    }
    try {
Long.parseLong(id15); // 校验是否为数字字符串

String birthday = "19" + id15.substring(6, 12);
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
sdf.parse(birthday); // 校验出生日期
if ((identity.length() == 18)
&& !fixPersonIDCodeWithoutCheck(id15).equals(identity)) {
    return false; // 校验18位身份证
}
    } catch (Exception e) {
return false;
    }
    return true;
} else {
    return false;
}
    }

    /**
     * 从身份证号中获取出生日期,身份证号可以为15位或18位
     *
     * @param identity
     *            身份证号
     * @return 出生日期
     * @throws 身份证号出生日期段有误
     */
    public static Timestamp getBirthdayFromPersonIDCode(String identity)
    throws Exception {
String id = getFixedPersonIDCode(identity);
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
try {
    Timestamp birthday = new Timestamp(sdf.parse(id.substring(6, 14))
    .getTime());
    return birthday;
} catch (ParseException e) {
    throw new Exception("不是有效的身份证号,请检查");
}
    }

    /**
     * 从身份证号获取性别
     *
     * @param identity
     *            身份证号
     * @return 性别代码
     * @throws Exception
     *             无效的身份证号码
     */
    public static String getGenderFromPersonIDCode(String identity)
    throws Exception {
String id = getFixedPersonIDCode(identity);
char sex = id.charAt(16);
return (sex % 2) == 0 ? "2" : "1";
    }

    /**
     * 将货币转换为大写形式(类内部调用)
     *
     * @param val
     * @return String
     */
    private static String PositiveIntegerToHanStr(String NumStr) {
// 输入字符串必须正整数,只允许前导空格(必须右对齐),不宜有前导零
String RMBStr = "";
boolean lastzero = false;
boolean hasvalue = false; // 亿、万进位前有数值标记
int len, n;
len = NumStr.length();
if (len > 15) {
    return "数值过大!";
}
for (int i = len - 1; i >= 0; i--) {
    if (NumStr.charAt(len - i - 1) == ' ') {
continue;
    }
    n = NumStr.charAt(len - i - 1) - '0';
    if ((n < 0) || (n > 9)) {
return "输入含非数字字符!";
    }

    if (n != 0) {
if (lastzero) {
    RMBStr += HanDigiStr[0]; // 若干零后若跟非零值,只显示一个零
}
// 除了亿万前的零不带到后面
// if( !( n==1 && (i%4)==1 && (lastzero || i==len-1) ) )
// 如十进位前有零也不发壹音用此行
if (!((n == 1) && ((i % 4) == 1) && (i == (len - 1)))) {
    RMBStr += HanDigiStr[n];
}
RMBStr += HanDiviStr[i]; // 非零值后加进位,个位为空
hasvalue = true; // 置万进位前有值标记

    } else {
if (((i % == 0) || (((i % == 4) && hasvalue)) {
    RMBStr += HanDiviStr[i]; // “亿”或“万”
}
    }
    if ((i % == 0) {
hasvalue = false; // 万进位前有值标记逢亿复位
    }
    lastzero = (n == 0) && ((i % 4) != 0);
}

if (RMBStr.length() == 0) {
    return HanDigiStr[0]; // 输入空字符或"0",返回"零"
}
return RMBStr;
    }

    /**
     * 将货币转换为大写形式
     *
     * @param val
     *            传入的数据
     * @return String 返回的人民币大写形式字符串
     */
    public static String numToRMBStr(double val) {
String SignStr = "";
String TailStr = "";
long fraction, integer;
int jiao, fen;

if (val < 0) {
    val = -val;
    SignStr = "负";
}
if ((val > 99999999999999.999) || (val < -99999999999999.999)) {
    return "数值位数过大!";
}
// 四舍五入到分
long temp = Math.round(val * 100);
integer = temp / 100;
fraction = temp % 100;
jiao = (int) fraction / 10;
fen = (int) fraction % 10;
if ((jiao == 0) && (fen == 0)) {
    TailStr = "整";
} else {
    TailStr = HanDigiStr[jiao];
    if (jiao != 0) {
TailStr += "角";
    }
    // 零元后不写零几分
    if ((integer == 0) && (jiao == 0)) {
TailStr = "";
    }
    if (fen != 0) {
TailStr += HanDigiStr[fen] + "分";
    }
}
// 下一行可用于非正规金融场合,0.03只显示“叁分”而不是“零元叁分”
// if( !integer ) return SignStr+TailStr;
return SignStr + PositiveIntegerToHanStr(String.valueOf(integer)) + "元"
+ TailStr;
    }

    /**
     * 获取指定年份和月份对应的天数
     *
     * @param year
     *            指定的年份
     * @param month
     *            指定的月份
     * @return int 返回天数
     */
    public static int getDaysInMonth(int year, int month) {
if ((month == 1) || (month == 3) || (month == 5) || (month == 7)
|| (month == || (month == 10) || (month == 12)) {
    return 31;
} else if ((month == 4) || (month == 6) || (month == 9)
|| (month == 11)) {
    return 30;
} else {
    if ((((year % 4) == 0) && ((year % 100) != 0))
    || ((year % 400) == 0)) {
return 29;
    } else {
return 28;
    }
}
    }

    /**
     * 根据所给的起止时间来计算间隔的天数
     *
     * @param startDate
     *            起始时间
     * @param endDate
     *            结束时间
     * @return int 返回间隔天数
     */
    public static int getIntervalDays(java.sql.Date startDate,
    java.sql.Date endDate) {
long startdate = startDate.getTime();
long enddate = endDate.getTime();
long interval = enddate - startdate;
int intervalday = (int) (interval / (1000 * 60 * 60 * 24));
return intervalday;
    }

    /**
     * 根据所给的起止时间来计算间隔的月数
     *
     * @param startDate
     *            起始时间
     * @param endDate
     *            结束时间
     * @return int 返回间隔月数
     */
    public static int getIntervalMonths(java.sql.Date startDate,
    java.sql.Date endDate) {
Calendar startCal = Calendar.getInstance();
startCal.setTime(startDate);
Calendar endCal = Calendar.getInstance();
endCal.setTime(endDate);
int startDateM = startCal.MONTH;
int startDateY = startCal.YEAR;
int enddatem = endCal.MONTH;
int enddatey = endCal.YEAR;
int interval = ((enddatey * 12) + enddatem)
- ((startDateY * 12) + startDateM);
return interval;
    }

    /**
     * 返回当前日期时间字符串<br>
     * 默认格式:yyyy-mm-dd hh:mm:ss
     *
     * @return String 返回当前字符串型日期时间
     */
    public static String getCurrentTime() {
String returnStr = null;
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date();
returnStr = f.format(date);
return returnStr;
    }

    /**
     * 返回自定义格式的当前日期时间字符串
     *
     * @param format
     *            格式规则
     * @return String 返回当前字符串型日期时间
     */
    public static String getCurrentTime(String format) {
String returnStr = null;
SimpleDateFormat f = new SimpleDateFormat(format);
Date date = new Date();
returnStr = f.format(date);
return returnStr;
    }

    /**
     * 返回当前字符串型日期
     *
     * @return String 返回的字符串型日期
     */
    public static String getCurDate() {
Calendar calendar = Calendar.getInstance();
SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
String strDate = simpledateformat.format(calendar.getTime());
return strDate;
    }

    /**
     * 返回TimeStamp对象
     *
     * @return
     * @throws Exception
     */
    public static Timestamp getCurrentTimestamp() throws Exception {
Object obj = TypeConvertHelper.convert(getCurrentTime(), "Timestamp",
"yyyy-MM-dd HH:mm:ss");
if (obj != null) {
    return (Timestamp) obj;
} else {
    return null;
}
    }

    /**
     * 将字符串型日期转换为日期型
     *
     * @param strDate
     *            字符串型日期
     * @param srcDateFormat
     *            源日期格式
     * @param dstDateFormat
     *            目标日期格式
     * @return Date 返回的util.Date型日期
     */
    public static Date stringToDate(String strDate, String srcDateFormat,
    String dstDateFormat) {
Date rtDate = null;
Date tmpDate = (new SimpleDateFormat(srcDateFormat)).parse(strDate,
new ParsePosition(0));
String tmpString = null;
if (tmpDate != null) {
    tmpString = (new SimpleDateFormat(dstDateFormat)).format(tmpDate);
}
if (tmpString != null) {
    rtDate = (new SimpleDateFormat(dstDateFormat)).parse(tmpString,
    new ParsePosition(0));
}
return rtDate;
    }

    /**
     * 合并字符串数组
     *
     * @param a
     *            字符串数组0
     * @param b
     *            字符串数组1
     * @return 返回合并后的字符串数组
     */
    public static String[] mergeStringArray(String[] a, String[] b) {
if ((a.length == 0) || isEmpty(a)) {
    return b;
}
if ((b.length == 0) || isEmpty(b)) {
    return a;
}
String[] c = new String[a.length + b.length];
for (int m = 0; m < a.length; m++) {
    c[m] = a[m];
}
for (int i = 0; i < b.length; i++) {
    c[a.length + i] = b[i];
}
return c;
    }

    /**
     * 对文件流输出下载的中文文件名进行编码 屏蔽各种浏览器版本的差异性
     */
    public static String encodeChineseDownloadFileName(
    HttpServletRequest request, String pFileName) {
String agent = request.getHeader("USER-AGENT");
try {
    if ((null != agent) && (-1 != agent.indexOf("MSIE"))) {
pFileName = URLEncoder.encode(pFileName, "utf-8");
    } else {
pFileName = new String(pFileName.getBytes("utf-8"), "iso8859-1");
    }
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
}
return pFileName;
    }

    /**
     * 根据日期获取星期
     *
     * @param strdate
     * @return
     */
    public static String getWeekDayByDate(String strdate) {
final String dayNames[] = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五",
"星期六" };
SimpleDateFormat sdfInput = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
Date date = new Date();
try {
    date = sdfInput.parse(strdate);
} catch (ParseException e) {
    e.printStackTrace();
}
calendar.setTime(date);
int dayOfWeek = calendar.get(Calendar.DAY_OF_WEEK) - 1;
if (dayOfWeek < 0) {
    dayOfWeek = 0;
}
return dayNames[dayOfWeek];
    }

    /**
     * 判断是否是IE浏览器
     *
     * @param userAgent
     * @return
     */
    public static boolean isIE(HttpServletRequest request) {
String userAgent = request.getHeader("USER-AGENT").toLowerCase();
boolean isIe = true;
int index = userAgent.indexOf("msie");
if (index == -1) {
    isIe = false;
}
return isIe;
    }

    /**
     * 判断是否是Chrome浏览器
     *
     * @param userAgent
     * @return
     */
    public static boolean isChrome(HttpServletRequest request) {
String userAgent = request.getHeader("USER-AGENT").toLowerCase();
boolean isChrome = true;
int index = userAgent.indexOf("chrome");
if (index == -1) {
    isChrome = false;
}
return isChrome;
    }

    /**
     * 判断是否是Firefox浏览器
     *
     * @param userAgent
     * @return
     */
    public static boolean isFirefox(HttpServletRequest request) {
String userAgent = request.getHeader("USER-AGENT").toLowerCase();
boolean isFirefox = true;
int index = userAgent.indexOf("firefox");
if (index == -1) {
    isFirefox = false;
}
return isFirefox;
    }

    /**
     * 获取客户端类型
     *
     * @param userAgent
     * @return
     */
    public static String getClientExplorerType(HttpServletRequest request) {
String userAgent = request.getHeader("USER-AGENT").toLowerCase();
String explorer = "非主流浏览器";
if (isIE(request)) {
    int index = userAgent.indexOf("msie");
    explorer = userAgent.substring(index, index +;
} else if (isChrome(request)) {
    int index = userAgent.indexOf("chrome");
    explorer = userAgent.substring(index, index + 12);
} else if (isFirefox(request)) {
    int index = userAgent.indexOf("firefox");
    explorer = userAgent.substring(index, index + 11);
}
return explorer.toUpperCase();
    }

    /**
     * 基于MD5算法的单向加密
     *
     * @param strSrc
     *            明文
     * @return 返回密文
     */
    public static String encryptBasedMd5(String strSrc) {
String outString = null;
try {
    MessageDigest md5 = MessageDigest.getInstance("MD5");
    byte[] outByte = md5.digest(strSrc.getBytes("UTF-8"));
    outString = outByte.toString();
} catch (Exception e) {
    e.printStackTrace();
}
return outString;
    }

    /**
     * 数据加密,算法(DES)
     *
     * @param data
     *            要进行加密的数据
     * @return 加密后的数据
     */
    public static String encryptBasedDes(String data) {
String encryptedData = null;
try {
    // DES算法要求有一个可信任的随机数源
    SecureRandom sr = new SecureRandom();
    DESKeySpec deskey = new DESKeySpec(DES_KEY);
    // 创建一个密匙工厂,然后用它把DESKeySpec转换成一个SecretKey对象
    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
    SecretKey key = keyFactory.generateSecret(deskey);
    // 加密对象
    Cipher cipher = Cipher.getInstance("DES");
    cipher.init(Cipher.ENCRYPT_MODE, key, sr);
    // 加密,并把字节数组编码成字符串
    encryptedData = new BASE64Encoder().encode(cipher.doFinal(data
    .getBytes()));
} catch (Exception e) {
    log.error("加密错误,错误信息:", e);
    throw new RuntimeException("加密错误,错误信息:", e);
}
return encryptedData;
    }

    /**
     * 数据解密,算法(DES)
     *
     * @param cryptData
     *            加密数据
     * @return 解密后的数据
     */
    public static String decryptBasedDes(String cryptData) {
String decryptedData = null;
try {
    // DES算法要求有一个可信任的随机数源
    SecureRandom sr = new SecureRandom();
    DESKeySpec deskey = new DESKeySpec(DES_KEY);
    // 创建一个密匙工厂,然后用它把DESKeySpec转换成一个SecretKey对象
    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
    SecretKey key = keyFactory.generateSecret(deskey);
    // 解密对象
    Cipher cipher = Cipher.getInstance("DES");
    cipher.init(Cipher.DECRYPT_MODE, key, sr);
    // 把字符串解码为字节数组,并解密
    decryptedData = new String(
    cipher.doFinal(new sun.misc.BASE64Decoder()
    .decodeBuffer(cryptData)));
} catch (Exception e) {
    log.error("解密错误,错误信息:", e);
    throw new RuntimeException("解密错误,错误信息:", e);
}
return decryptedData;
    }

    /**
     * 判断缺省数据源的JDBC类型:Oracle
     *
     * @return
     */
    public static boolean defaultJdbcTypeOracle() {
boolean out = false;
String jdbcType = System.getProperty("g4.JdbcType");
if (jdbcType.equalsIgnoreCase("oracle")) {
    out = true;
}
return out;
    }

    /**
     * 判断缺省数据源的JDBC类型:Mysql
     *
     * @return
     */
    public static boolean defaultJdbcTypeMysql() {
boolean out = false;
String jdbcType = System.getProperty("g4.JdbcType");
if (jdbcType.equalsIgnoreCase("mysql")) {
    out = true;
}
return out;
    }

    /**
     * JS输出含有\n的特殊处理
     *
     * @param pStr
     * @return
     */
    public static String replace4JsOutput(String pStr) {
pStr = pStr.replace("\r\n", "<br/>&nbsp;&nbsp;");
pStr = pStr.replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;");
pStr = pStr.replace(" ", "&nbsp;");
return pStr;
    }

    /**
     * 获取class文件所在绝对路径
     *
     * @param cls
     * @return
     * @throws IOException
     */
    public static String getPathFromClass(Class cls) {
String path = null;
if (cls == null) {
    throw new NullPointerException();
}
URL url = getClassLocationURL(cls);
if (url != null) {
    path = url.getPath();
    if ("jar".equalsIgnoreCase(url.getProtocol())) {
try {
    path = new URL(path).getPath();
} catch (MalformedURLException e) {
}
int location = path.indexOf("!/");
if (location != -1) {
    path = path.substring(0, location);
}
    }
    File file = new File(path);
    try {
path = file.getCanonicalPath();
    } catch (IOException e) {
e.printStackTrace();
    }
}
return path;
    }

    /**
     * 这个方法可以通过与某个类的class文件的相对路径来获取文件或目录的绝对路径。 通常在程序中很难定位某个相对路径,特别是在B/S应用中。
     * 通过这个方法,我们可以根据我们程序自身的类文件的位置来定位某个相对路径。
     * 比如:某个txt文件相对于程序的Test类文件的路径是../../resource/test.txt,
     * 那么使用本方法Path.getFullPathRelateClass("../../resource/test.txt",Test.class)
     * 得到的结果是txt文件的在系统中的绝对路径。
     *
     * @param relatedPath
     *            相对路径
     * @param cls
     *            用来定位的类
     * @return 相对路径所对应的绝对路径
     * @throws IOException
     *             因为本方法将查询文件系统,所以可能抛出IO异常
     */
    public static String getFullPathRelateClass(String relatedPath, Class cls) {
String path = null;
if (relatedPath == null) {
    throw new NullPointerException();
}
String clsPath = getPathFromClass(cls);
File clsFile = new File(clsPath);
String tempPath = clsFile.getParent() + File.separator + relatedPath;
File file = new File(tempPath);
try {
    path = file.getCanonicalPath();
} catch (IOException e) {
    e.printStackTrace();
}
return path;
    }

    /**
     * 获取类的class文件位置的URL
     *
     * @param cls
     * @return
     */
    private static URL getClassLocationURL(final Class cls) {
if (cls == null) {
    throw new IllegalArgumentException("null input: cls");
}
URL result = null;
final String clsAsResource = cls.getName().replace('.', '/')
.concat(".class");
final ProtectionDomain pd = cls.getProtectionDomain();
if (pd != null) {
    final CodeSource cs = pd.getCodeSource();
    if (cs != null) {
result = cs.getLocation();
    }
    if (result != null) {
if ("file".equals(result.getProtocol())) {
    try {
if (result.toExternalForm().endsWith(".jar")
|| result.toExternalForm().endsWith(".zip")) {
    result = new URL("jar:"
    .concat(result.toExternalForm())
    .concat("!/").concat(clsAsResource));
} else if (new File(result.getFile()).isDirectory()) {
    result = new URL(result, clsAsResource);
}
    } catch (MalformedURLException ignore) {
    }
}
    }
}
if (result == null) {
    final ClassLoader clsLoader = cls.getClassLoader();
    result = clsLoader != null ? clsLoader.getResource(clsAsResource)
    : ClassLoader.getSystemResource(clsAsResource);
}
return result;
    }

    /**
     * 获取start到end区间的随机数,不包含start+end
     *
     * @param start
     * @param end
     * @return
     */
    public static BigDecimal getRandom(int start, int end) {
return new BigDecimal(start + (Math.random() * end));
    }

}
分享到:
评论

相关推荐

    exfat-utils-1.0.1.tar.gz_exfat_exfat utils_exfat-utils_exfat-uti

    Linux中的exfat-utils是一个用于在Linux系统上读取、写入和管理ExFAT文件系统的工具集。 "exfat-utils-1.0.1.tar.gz" 是一个包含ExFAT实用程序的源码包,版本号为1.0.1。这个压缩包提供了在Linux环境下操作ExFAT...

    mtd-utils安装包

    **mtd-utils安装包** **mtd-utils** 是一组用于管理Memory Technology Device (MTD)的工具,主要用于操作和维护嵌入式系统中的闪存设备。MTD是Linux内核中处理非易失性存储器(如EEPROM、EPROM、NOR和NAND闪存)的...

    sg3-utils 静态编译包

    注意:在unbuntu上按照压缩文档中的《sg3_utils测试工具交叉编译,静态编译.pdf》进行操作,可自行编译sg3_utils arm64 静态包 sg3_utils ARM64 静态编译链接程序,可直接在arm64平台上运行,用于对scsi 设备进行...

    ext4_utils

    《深入理解ext4_utils:三星线刷ROM打包利器》 在Android系统开发和维护领域,三星线刷ROM的打包工具ext4_utils是一个不可或缺的实用程序。这个工具集专注于处理ext4文件系统,一种广泛用于Linux内核的高性能日志...

    alsa-utils alsa-utils alsa-utils

    alsa-utils

    plexus-utils-.jar.rar

    《Plexus Utils:构建Java开发的实用工具库》 Plexus Utils 是一个由Sonatype公司开发的Java库,它提供了一系列实用工具类,旨在为Maven和Plexus项目提供帮助。这个库的核心目标是提高开发效率,简化代码,并提供在...

    bluez-utils-3.36

    《Linux系统中的BlueZ-utils-3.36:蓝牙功能移植与应用详解》 在Linux操作系统的世界里,蓝牙技术的运用日益广泛,特别是在设备间的数据传输、无线音频播放以及物联网(IoT)设备的交互中扮演着关键角色。BlueZ是...

    nfs-utils.tar.gz

    【nfs-utils.tar.gz】是一个包含NFS(Network File System)工具的离线安装包,主要服务于Linux系统,用于实现不同计算机之间的文件共享。NFS是一种标准的协议,允许一台计算机(客户端)透明地访问另一台计算机...

    redis utils 工具类

    Redis Utils工具类是Java开发中常见的一种封装,用于简化与Redis数据库的交互操作。Redis是一种高性能的键值存储系统,广泛应用于缓存、消息队列、数据持久化等多个场景。在Java开发中,为了提高代码的可读性和复用...

    canutils-4.0.6及其使用说明

    CANutils是CAN(Controller Area Network)通信协议的开源工具集,用于处理CAN数据和网络管理。版本4.0.6提供了最新的功能和改进,适用于嵌入式系统开发、汽车电子、工业自动化等领域。这个压缩包包含的是关于can...

    base64utils jar 包下载

    Base64Utils是一个Java库,通常用于在编程中进行Base64编码和解码。Base64是一种将二进制数据转换为可打印字符的方法,以便在不支持二进制数据的环境中(如电子邮件系统)传输。这个jar包是专门为Java开发者设计的,...

    zip_utils_src

    `zip_utils_src` 提供了C++语言实现的ZIP文件操作的源码和实例,这对于理解和开发相关功能非常有帮助。 首先,我们来讨论C++中的压缩库。在C++中,处理ZIP文件通常依赖于第三方库,如ZLib、LibZip或MiniZip。这些库...

    qrcode-utils-1.1-API文档-中文版.zip

    赠送jar包:qrcode-utils-1.1.jar; 赠送原API文档:qrcode-utils-1.1-javadoc.jar; 赠送源代码:qrcode-utils-1.1-sources.jar; 赠送Maven依赖信息文件:qrcode-utils-1.1.pom; 包含翻译后的API文档:qrcode-...

    java-property-utils-1.9.1.jar,java-property-utils-1.10.jar

    Java Property Utils是Java开发中的一个实用工具库,主要用于处理和操作Java系统属性和配置文件。在给定的场景中,`java-property-utils-1.9.1.jar` 和 `java-property-utils-1.10.jar` 是这个库的两个不同版本,...

    nfs-utils-2.4.3.tar.gz

    《NFS-utils 2.4.3在ARM Linux系统中的移植详解》 NFS(Network File System)是一种广泛应用于分布式计算环境的文件系统协议,它允许用户在一个网络中的计算机上透明地访问另一台计算机的文件系统。NFS-utils是...

    HDP-UTILS-1.1.0.22-centos7.tar.gz

    标题 "HDP-UTILS-1.1.0.22-centos7.tar.gz" 提供的是一个软件包的名称,这通常代表了一个特定版本的工具集合,用于在CentOS 7操作系统上与Hadoop Distributed File System (HDFS)相关的操作。HDP全称为Hortonworks ...

    mtd-utils-交叉编译与使用2正解

    【mtd-utils 交叉编译详解】 在嵌入式开发中,经常需要对软件进行交叉编译,以便在目标硬件上运行。`mtd-utils` 是一组用于管理内存技术驱动(Memory Technology Driver)的实用程序,它包含了诸如 `flash_eraseall...

    hk2-utils-2.4.0-b34-API文档-中英对照版.zip

    赠送jar包:hk2-utils-2.4.0-b34.jar; 赠送原API文档:hk2-utils-2.4.0-b34-javadoc.jar; 赠送源代码:hk2-utils-2.4.0-b34-sources.jar; 赠送Maven依赖信息文件:hk2-utils-2.4.0-b34.pom; 包含翻译后的API文档...

    ExcelUtils按模板导出所需的JAR包

    ExcelUtils工具类是一个在Java开发中广泛使用的库,它的主要功能是帮助开发者便捷地按照预设模板导出Excel文件。这种工具极大地简化了处理Excel数据的复杂性,使得程序员能够快速实现数据的导出功能,而无需深入了解...

    Ambari+HDP+HDP-UTILS.rar

    标题中的"Ambari+HDP+HDP-UTILS.rar"表明这是一份与Apache Ambari、Hortonworks Data Platform (HDP)以及HDP-UTILS相关的压缩包资源。这些组件在大数据处理和管理领域具有重要作用,主要用于简化Hadoop生态系统的...

Global site tag (gtag.js) - Google Analytics