本文整理汇总了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;
});
}