由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - int --> String?
相关主题
这两个程序哪个更快?也问一个Eclipse的问题
a simple question一个Java程序员的话(4)--续第一章
请问StringBuffer的OutofMemory问题java问题:如何match两个正规表达式
Java练习题 3Java,EJB的performance
Java StringBuilder myth debunkedgarbage collection issue
我自己编了个Java面试题请教document
为什么我这个参数的内容存不下?How to parse the bytes[]
初学者code请教 (大牛莫取笑)从文件读入数据得到的是bytes
相关话题的讨论汇总
话题: string话题: int话题: ll话题: 1000
进入Java版参与讨论
1 (共1页)
k*o
发帖数: 46
1
how to transform int 1000 to "1,000" instead of "1000"?
c*y
发帖数: 137
2
You can write an toComaString function to do that easily.
This is one I came up:
public static String toCommaString(int i){
String s=String.valueOf(i);
int l=s.length();
if(l <= 3) return s;
StringBuffer sb=new StringBuffer(s);
int ll=l-3;
while (ll>0){
sb.insert(ll,',');
ll=ll-3;
}
return sb.toString();
}

【在 k*o 的大作中提到】
: how to transform int 1000 to "1,000" instead of "1000"?
d******p
发帖数: 24
3
java.txt.DecimalFormat can do it and much more.

【在 k*o 的大作中提到】
: how to transform int 1000 to "1,000" instead of "1000"?
KG
发帖数: 515
4
A better way to do it is to use NumberFormat, taking into account the Locale.

【在 c*y 的大作中提到】
: You can write an toComaString function to do that easily.
: This is one I came up:
: public static String toCommaString(int i){
: String s=String.valueOf(i);
: int l=s.length();
: if(l <= 3) return s;
: StringBuffer sb=new StringBuffer(s);
: int ll=l-3;
: while (ll>0){
: sb.insert(ll,',');

1 (共1页)
进入Java版参与讨论
相关主题
从文件读入数据得到的是bytesJava StringBuilder myth debunked
java string stream我自己编了个Java面试题
菜鸟请教jsp和ejb为什么我这个参数的内容存不下?
ArrayList vs Array, StringBuffer vs String, 大侠们给讲讲有初学者code请教 (大牛莫取笑)
这两个程序哪个更快?也问一个Eclipse的问题
a simple question一个Java程序员的话(4)--续第一章
请问StringBuffer的OutofMemory问题java问题:如何match两个正规表达式
Java练习题 3Java,EJB的performance
相关话题的讨论汇总
话题: string话题: int话题: ll话题: 1000