我是靠谱客的博主 怕孤单心锁,最近开发中收集的这篇文章主要介绍处理基本数据类型转换的工具类 (字符串类型转换为BigDecimal金额、int、Double),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package CommonUtil;

import java.math.BigDecimal;
import java.util.regex.Pattern;

/**
 * 处理基本数据类型转换的工具类 (字符串类型转换为BigDecimal金额、int、Double)
 */
public class DataTypeUtil {
	/**
	 * 字符串转换为BigDecimal金额类型
	 */
	public static BigDecimal getBigDecimal(String s) {
		if (s != null && Pattern.matches("^\d+\.??\d+$", s)) {
			try {
				return new BigDecimal(s);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return null;
	}

	/**
	 * 字符串转换为int类型
	 */
	public static int parseInt(String s) {
		if (s != null && Pattern.matches("^\d*$", s)) {
			try {
				return Integer.parseInt(s);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return 0;
	}

	/**
	 * 字符串转换为转换Double型
	 */
	public static Double parseDouble(String s) {
		if (s != null && Pattern.matches(
				"^[-+]?(/d+(/./d*)?|/./d+)([eE]([-+]?([012]?/d{1,2}|30[0-7])|-3([01]?[4-9]|[012]?[0-3])))?[dD]?$", s)) {
			try {
				return Double.parseDouble(s);
			} catch (Exception e) {
				e.printStackTrace();
				return null;
			}
		}
		return null;
	}
	
}

 

最后

以上就是怕孤单心锁为你收集整理的处理基本数据类型转换的工具类 (字符串类型转换为BigDecimal金额、int、Double)的全部内容,希望文章能够帮你解决处理基本数据类型转换的工具类 (字符串类型转换为BigDecimal金额、int、Double)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部