java中字符串按指定长度拆分成集合的方法
时间: 2024-05-02 19:23:38 浏览: 99
Java中可以通过如下代码实现字符串按指定长度拆分成集合的方法:
```
public static List<String> splitString(String str, int len){
List<String> list = new ArrayList<>();
int strLen = str.length();
int count = strLen/len;
if(strLen%len!=0){
count += 1;
}
for(int i=0; i<count; i++){
int endIndex = (i+1)*len;
if(endIndex > strLen){
endIndex = strLen;
}
list.add(str.substring(i*len, endIndex));
}
return list;
}
```
其中`str`为待拆分字符串,`len`为指定长度。函数返回一个`List`对象,里面存放拆分后的子字符串。
阅读全文