java字符串和数字转换工具_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java字符串和数字转换工具

java字符串和数字转换工具

 2015/5/6 21:56:44  zx_code  程序员俱乐部  我要评论(0)
  • 摘要:java数字和字符串之间的转换工具packagecom.xwtec.util;/***数字工具类*/publicclassNumberUtil{/***数字转换为字符串*@paramnum数字*@return字符串,如果num为空,返回空字符串*/publicstaticStringnum2Str(Objectnum){Stringstr=null;if(num==null){str="";}else{str=String.valueOf(num);}returnstr;
  • 标签:工具 Java 字符串
java数字和字符串之间的转换工具
class="java" name="code">package com.xwtec.util;

/**
 * 数字工具类
 */
public class NumberUtil {

    /**
     * 数字转换为字符串
     * @param num 数字
     * @return 字符串,如果 num 为空, 返回空字符串
     */
    public static String num2Str(Object num) {
        String str = null;

        if (num == null) {
            str = "";
        }
        else {
            str = String.valueOf(num);
        }
        return str;
    }

    /**
     * 字符串转换为Integer
     * @param str 字符串
     * @return Integer, str为null时返回0
     */
    public static Integer getInteger(Object obj) {
        return getInteger(obj, 0);
    }

    /**
     * 字符串转换为Integer
     * @param str 字符串
     * @param def 默认值
     * @return Integer, 字符串为null时返回def
     */
    public static Integer getInteger(Object obj, int def) {
        String str = obj == null ? "" : obj.toString();

        Integer i = null;

        if (str.trim().length() == 0) {
            i = new Integer(def);
        }
        else {
            try {
                i = Integer.valueOf(str);
            }
            catch (Exception e) {
            }
        }

        return i == null ? new Integer(def) : i;
    }

    /**
     * 字符串转换为Long
     * @param str 字符串
     * @return Long, str为null时返回0
     */
    public static Long getLong(Object obj) {
        return getLong(obj, 0);
    }

    /**
     * 字符串转换为Long
     * @param str 字符串
     * @param def 默认值
     * @return Long, 字符串为null时返回def
     */
    public static Long getLong(Object obj, long def) {
        String str = obj == null ? "" : obj.toString();

        Long l = null;

        if (str.trim().length() == 0) {
            l = new Long(def);
        }
        else {
            try {
                l = Long.valueOf(str);
            }
            catch (Exception e) {
            }
        }

        return l == null ? new Long(def) : l;
    }

    /**
     * 字符串转换为Integer
     * @param str 字符串
     * @return Integer, str为null时返回0
     */
    public static int getIntegerValue(Object obj) {
        return getIntegerValue(obj, 0);
    }

    /**
     * 字符串转换为Integer
     * @param str 字符串
     * @param def 默认值
     * @return Integer, 字符串为null时返回def
     */
    public static int getIntegerValue(Object obj, int def) {
        return getInteger(obj, def).intValue();
    }

    /**
     * 字符串转换为Long
     * @param str 字符串
     * @return Long, str为null时返回0
     */
    public static long getLongValue(Object obj) {
        return getLongValue(obj, 0);
    }

    /**
     * 字符串转换为Long
     * @param str 字符串
     * @param def 默认值
     * @return Long, 字符串为null时返回def
     */
    public static long getLongValue(Object obj, long def) {
        return getLong(obj, def).longValue();
    }
}
上一篇: 关于字节编码问题 下一篇: 接口与事件
发表评论
用户名: 匿名