當前位置: 首頁>>代碼示例>>Java>>正文


Java DecimalFormat.setNegativePrefix方法代碼示例

本文整理匯總了Java中java.text.DecimalFormat.setNegativePrefix方法的典型用法代碼示例。如果您正苦於以下問題:Java DecimalFormat.setNegativePrefix方法的具體用法?Java DecimalFormat.setNegativePrefix怎麽用?Java DecimalFormat.setNegativePrefix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.text.DecimalFormat的用法示例。


在下文中一共展示了DecimalFormat.setNegativePrefix方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: asOffset

import java.text.DecimalFormat; //導入方法依賴的package包/類
private Long asOffset(String offsetValueStr, String offsetUnitStr)
        throws ShellCommandException {
    int offsetValue;
    try {
        DecimalFormat formatter = new DecimalFormat();
        formatter.setPositivePrefix("+");
        formatter.setNegativePrefix("-");
        offsetValue = formatter.parse(offsetValueStr).intValue();
    } catch (ParseException pe) {
        throw new ShellCommandException("offset value format error: " + offsetValueStr);
    }

    OffsetUnit offsetUnit;
    try {
        offsetUnit = OffsetUnit.valueOf(offsetUnitStr.toUpperCase());
    } catch (IllegalArgumentException iae) {
        throw new ShellCommandException("unsupported offset unit: " + offsetUnitStr);
    }

    Calendar calendar = new GregorianCalendar();
    calendar.setTime(new Date(getSession().getTargetTime()));
    calendar.add(offsetUnit.field, offsetValue);

    return new Long(calendar.getTime().getTime());
}
 
開發者ID:openNaEF,項目名稱:openNaEF,代碼行數:26,代碼來源:SetTargetTimeCommand.java

示例2: format

import java.text.DecimalFormat; //導入方法依賴的package包/類
public static String format(Number number, String prefix, String suffix, int numFractionDigits, boolean grouping){
	DecimalFormat df = new DecimalFormat();
	df.setMaximumFractionDigits(numFractionDigits);
	df.setMinimumFractionDigits(numFractionDigits);
	df.setRoundingMode(RoundingMode.HALF_UP);
	df.setGroupingUsed(grouping);
	df.setPositivePrefix(prefix);
	df.setNegativePrefix(prefix + "-");
	df.setPositiveSuffix(suffix);
	df.setNegativeSuffix(suffix);
	return df.format(number);
}
 
開發者ID:hotpads,項目名稱:datarouter,代碼行數:13,代碼來源:NumberFormatter.java

示例3: createDecimalFormatter

import java.text.DecimalFormat; //導入方法依賴的package包/類
private static TextFormatter<String> createDecimalFormatter() {
	DecimalFormat format = new DecimalFormat("#.0");
	format.setNegativePrefix("-");
	return new TextFormatter<>(c -> {
		if (c.getControlNewText().isEmpty()) return c;
		ParsePosition pos = new ParsePosition(0);
		Number result = format.parse(c.getControlNewText(), pos);
		if (result == null || pos.getIndex() < c.getControlNewText().length()) {
			return null;
		} else return c;
	});
}
 
開發者ID:tom91136,項目名稱:GestureFX,代碼行數:13,代碼來源:LenaSample.java


注:本文中的java.text.DecimalFormat.setNegativePrefix方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。