我只想将输出四舍五入到小数点后4位第一个
输出
BeanShellTestElement : 44.211143 BeanShellTestElement : 44.211143
预期输出
BeanShellTestElement : 44.2111 BeanShellTestElement : 44.2111
xoefb8l81#
如果您需要字符串表示-请尝试DecimalFormat
对于BigDecimal类的数字表示:
new BigDecimal(a).round(4)
另外,请注意starting from JMeter 3.1 you're supposed to be using JSR223 Test Elements and Groovy language for scripting,因此请考虑迁移。
1条答案
按热度按时间xoefb8l81#
如果您需要字符串表示-请尝试DecimalFormat
对于BigDecimal类的数字表示:
另外,请注意starting from JMeter 3.1 you're supposed to be using JSR223 Test Elements and Groovy language for scripting,因此请考虑迁移。