currencyconverter.java
来自「利用了struts和bibernate实现的一个bbs demo」· Java 代码 · 共 74 行
JAVA
74 行
package com.bbs.util;import java.text.DecimalFormat;import java.text.ParseException;import org.apache.commons.beanutils.ConversionException;import org.apache.commons.beanutils.Converter;import org.apache.commons.lang.StringUtils;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/** * This class is converts a Double to a double-digit String * (and vise-versa) by BeanUtils when copying properties. * Registered for use in BaseAction. * * <p> * <a href="CurrencyConverter.java.html"><i>View Source</i></a> * </p> * * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a> */public class CurrencyConverter implements Converter { protected final Log log = LogFactory.getLog(CurrencyConverter.class); protected final DecimalFormat formatter = new DecimalFormat("###,###.00"); /** * Convert a String to a Double and a Double to a String * * @param type the class type to output * @param value the object to convert * @return object the converted object (Double or String) */ public final Object convert(final Class type, final Object value) { // for a null value, return null if (value == null) { return null; } else { if (value instanceof String) { if (log.isDebugEnabled()) { log.debug("value (" + value + ") instance of String"); } try { if (StringUtils.isBlank(String.valueOf(value))) { return null; } if (log.isDebugEnabled()) { log.debug("converting '" + value + "' to a decimal"); } //formatter.setDecimalSeparatorAlwaysShown(true); Number num = formatter.parse(String.valueOf(value)); return new Double(num.doubleValue()); } catch (ParseException pe) { pe.printStackTrace(); } } else if (value instanceof Double) { if (log.isDebugEnabled()) { log.debug("value (" + value + ") instance of Double"); log.debug("returning double: " + formatter.format(value)); } return formatter.format(value); } } throw new ConversionException("Could not convert " + value + " to " + type.getName() + "!"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?