J2ME世界

2008年10月8日 #

J2ME中,如果要在最后位置添加一个字符,实现的方法?

//在最后位置添加一个字符
String str="A";
int size=tbMain.size();
if(size>0){
tbMain.insert(str,size
-1)
}


//在最后位置添加一个字符
String str="A";
tbMain.setString(tbMain.getString()
+str());

 

posted @ 2008-10-08 16:32 kerui178 阅读(69) | 评论 (1)编辑 收藏

仅列出标题