| Package | Description |
|---|---|
| org.dromara.hutool.core.collection.iter | |
| org.dromara.hutool.core.text.split |
字符串切分封装和工具类
|
| Modifier and Type | Class and Description |
|---|---|
class |
LineIter
将Reader包装为一个按照行读取的Iterator
此对象遍历结束后,应关闭之,推荐使用方式: LineIterator it = null; try { it = new LineIterator(reader); while (it.hasNext()) { String line = it.nextLine(); // do something with line } } finally { it.close(); } 此类来自于Apache Commons io |
| Modifier and Type | Class and Description |
|---|---|
class |
SplitIter
|
Copyright © 2025. All rights reserved.