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

    <small id='224Or'></small><noframes id='224Or'>

    <legend id='224Or'><style id='224Or'><dir id='224Or'><q id='224Or'></q></dir></style></legend>

        <bdo id='224Or'></bdo><ul id='224Or'></ul>

      如何将长转换/转换为字符串?

      时间:2023-07-27
    1. <legend id='4UQfl'><style id='4UQfl'><dir id='4UQfl'><q id='4UQfl'></q></dir></style></legend>
    2. <small id='4UQfl'></small><noframes id='4UQfl'>

        <tbody id='4UQfl'></tbody>

        <bdo id='4UQfl'></bdo><ul id='4UQfl'></ul>

      • <tfoot id='4UQfl'></tfoot>

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

              • 本文介绍了如何将长转换/转换为字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我刚刚创建了示例 BB 应用程序,它可以允许选择日期.

                I just created sample BB app, which can allow to choose the date.

                DateField curDateFld = new DateField("Choose Date: ",
                  System.currentTimeMillis(), DateField.DATE | DateField.FIELD_LEFT);
                

                选择日期后,我需要将该长值转换为字符串,以便可以轻松地将日期值存储在数据库中的某个位置.我是 Java 和 Blackberry 开发的新手.

                After choosing the date, I need to convert that long value to String, so that I can easily store the date value somewhere in database. I am new to Java and Blackberry development.

                long date = curDateFld.getDate();
                

                我应该如何将这个长值转换为字符串?我也想从String转换回long.我认为我可以使用 long l = Long.parseLong("myStr");?

                How should I convert this long value to String? Also I want to convert back to long from String. I think for that I can use long l = Long.parseLong("myStr");?

                推荐答案

                参见String 类的参考文档:String s = String.valueOf(date);

                如果您的 Long 可能为 null 并且您不想获得 4 个字母的 "null" 字符串,则可以使用 Objects.toString,如:String s = Objects.toString(date, null);

                If your Long might be null and you don't want to get a 4-letter "null" string, you might use Objects.toString, like: String s = Objects.toString(date, null);

                您使用 Long l = Long.valueOf(s); 反转它,但在这个方向上您需要捕获 NumberFormatException

                You reverse it using Long l = Long.valueOf(s); but in this direction you need to catch NumberFormatException

                这篇关于如何将长转换/转换为字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何在 Struts 2 中将值插入 Set 集合 下一篇:在Java中将十六进制字符串转换为字节

                相关文章

                最新文章

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

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

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