本文整理匯總了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());
}
示例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);
}
示例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;
});
}