gpt4 book ai didi

java - 安卓 : How to get the value like 04 instead of the 4 during parsing string to Integer?

转载 作者:行者123 更新时间:2023-12-02 08:02:44 25 4
gpt4 key购买 nike

我将字符串值存储为整数。

String a="04";
int aInt = Integer.parseInt(a) ;

但是我得到了 4 而不是 04。

那么我应该做什么呢?谢谢。

最佳答案

为什么在 int 变量中需要 04,因为它没有任何意义。是的,但是当您想打印它时,您可能需要显示前导零。

在整数中添加前导 0 在内部没有任何意义。因此,当您想要显示时,您可以更好地处理这部分。

您可以按如下方式显示前导零:

 String stringToDisplay = String.format("%02d", aInt);

关于java - 安卓 : How to get the value like 04 instead of the 4 during parsing string to Integer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8664572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com