码迷,mamicode.com
首页 > 其他好文 > 详细

遍历List内容截取字符串

时间:2018-11-02 13:04:35      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:nbsp   return   div   null   str   get   class   amp   sub   

 1 /**
 2      * 限定指数长度为两位
 3      * @return
 4      */
 5     public List<BJtzsZoneComeAndCross> subStringJtzsIndex(List<BJtzsZoneComeAndCross> list){
 6         //list不为空
 7         String index = "";
 8         String Jtzs = "";
 9         if(list != null && list.size() != 0){
10             for (int i = 0; i<list.size();i++){
11                 index = list.get(i).getJtzs();
12                 if (index.length() > 4){
13                     Jtzs = index.substring(0,4);
14                 }
15                 list.get(i).setJtzs(Jtzs);
16             }
17         }
18         return list;
19     }

 

遍历List内容截取字符串

标签:nbsp   return   div   null   str   get   class   amp   sub   

原文地址:https://www.cnblogs.com/assistants/p/9895555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!