本文介绍: 但很多时候,我们需要一个统一,要么全部以科学计数法输出,要么就全部显示为普通计数

Background

在这里插入图片描述

package com.yunlu.groundwater.constants;

import com.yunlu.groundwater.gwParameters.entities.*;

import java.util.HashMap;
import java.util.Map;

public class Const {

    // tpl
    public static final String TPL_E1 = "%s+%s";

    // fmt
    public static final String FMT_DOUBLE = "0.00E00";
}

/**
     * @param val 数值
     * @return 返回科学计数法字符串
     */
    public static String scientificNotationString(Double val) {
        String res = new DecimalFormat(Const.FMT_DOUBLE).format(val);
        if (val >= 1) {
            int length = res.length();
            String prefix = res.substring(0, length-2);
            String suffix = res.substring(length-2, length);
            res = String.format(Const.TPL_E1, prefix, suffix);
        }
        return res;
    }

原文地址:https://blog.csdn.net/qq_42761569/article/details/134692975

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_9917.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注