<small id='OD51C'></small><noframes id='OD51C'>

      • <bdo id='OD51C'></bdo><ul id='OD51C'></ul>
      <legend id='OD51C'><style id='OD51C'><dir id='OD51C'><q id='OD51C'></q></dir></style></legend>
        <i id='OD51C'><tr id='OD51C'><dt id='OD51C'><q id='OD51C'><span id='OD51C'><b id='OD51C'><form id='OD51C'><ins id='OD51C'></ins><ul id='OD51C'></ul><sub id='OD51C'></sub></form><legend id='OD51C'></legend><bdo id='OD51C'><pre id='OD51C'><center id='OD51C'></center></pre></bdo></b><th id='OD51C'></th></span></q></dt></tr></i><div id='OD51C'><tfoot id='OD51C'></tfoot><dl id='OD51C'><fieldset id='OD51C'></fieldset></dl></div>

      1. <tfoot id='OD51C'></tfoot>
      2. Java Double 到 String 的转换,无需格式化

        时间:2023-05-28
          <tbody id='8Nras'></tbody>
            <bdo id='8Nras'></bdo><ul id='8Nras'></ul>
              <legend id='8Nras'><style id='8Nras'><dir id='8Nras'><q id='8Nras'></q></dir></style></legend>

            • <i id='8Nras'><tr id='8Nras'><dt id='8Nras'><q id='8Nras'><span id='8Nras'><b id='8Nras'><form id='8Nras'><ins id='8Nras'></ins><ul id='8Nras'></ul><sub id='8Nras'></sub></form><legend id='8Nras'></legend><bdo id='8Nras'><pre id='8Nras'><center id='8Nras'></center></pre></bdo></b><th id='8Nras'></th></span></q></dt></tr></i><div id='8Nras'><tfoot id='8Nras'></tfoot><dl id='8Nras'><fieldset id='8Nras'></fieldset></dl></div>

                <small id='8Nras'></small><noframes id='8Nras'>

                <tfoot id='8Nras'></tfoot>
                1. 本文介绍了Java Double 到 String 的转换,无需格式化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的号码是 654987.它是数据库中的一个 ID.我想将其转换为字符串.常规的 Double.ToString(value) 使其成为科学形式,6.54987E5.我不想要的东西.

                  I have the number 654987. Its an ID in a database. I want to convert it to a string. The regular Double.ToString(value) makes it into scientific form, 6.54987E5. Something I dont want.

                  我发现的其他格式化函数检查当前语言环境并添加适当的千位分隔符等.由于它是一个 ID,我根本无法接受任何格式.

                  Other formatting functions Ive found checks the current locale and adds appropriate thousand separators and such. Since its an ID, I cant accept any formatting at all.

                  怎么做?

                  澄清:我正在研究一个将所有数字列视为双精度的特殊数据库.Double 是我可以从数据库中检索的唯一(数字)类型.

                  To clarify: Im working on a special database that treats all numeric columns as doubles. Double is the only (numeric) type I can retrieve from the database.

                  推荐答案

                  Use Long:

                  long id = 654987;
                  String str = Long.toString(id);
                  

                  这篇关于Java Double 到 String 的转换,无需格式化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Java 使用特定格式的级别顺序打印二叉树 下一篇:如何从 Java 中的十进制整数中获取十六进制值?

                  相关文章

                2. <tfoot id='ALY0d'></tfoot>

                    <small id='ALY0d'></small><noframes id='ALY0d'>

                      <bdo id='ALY0d'></bdo><ul id='ALY0d'></ul>

                  1. <i id='ALY0d'><tr id='ALY0d'><dt id='ALY0d'><q id='ALY0d'><span id='ALY0d'><b id='ALY0d'><form id='ALY0d'><ins id='ALY0d'></ins><ul id='ALY0d'></ul><sub id='ALY0d'></sub></form><legend id='ALY0d'></legend><bdo id='ALY0d'><pre id='ALY0d'><center id='ALY0d'></center></pre></bdo></b><th id='ALY0d'></th></span></q></dt></tr></i><div id='ALY0d'><tfoot id='ALY0d'></tfoot><dl id='ALY0d'><fieldset id='ALY0d'></fieldset></dl></div>
                  2. <legend id='ALY0d'><style id='ALY0d'><dir id='ALY0d'><q id='ALY0d'></q></dir></style></legend>