mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
🐞修复JSONStrFormatter:format函数对于转义符号处理逻辑错误问题
This commit is contained in:
@@ -22,7 +22,8 @@ import java.util.function.Predicate;
|
||||
* 包装 {@link Iterator}并根据{@link Predicate}定义,过滤元素输出<br>
|
||||
* 类实现来自Apache Commons Collection
|
||||
*
|
||||
* @author mina commons, looly
|
||||
* @param <E> 元素类型
|
||||
* @author Apahce-commons, looly
|
||||
* @since 5.8.0
|
||||
*/
|
||||
public class FilterIter<E> implements Iterator<E> {
|
||||
|
@@ -24,7 +24,7 @@ import java.util.NoSuchElementException;
|
||||
* <p>
|
||||
* 此 iterator 不支持 {@link #remove()} 方法。
|
||||
*
|
||||
* @author mina commons,looly
|
||||
* @author Apache-commons,looly
|
||||
* @see NodeList
|
||||
* @since 5.8.0
|
||||
*/
|
||||
|
@@ -18,8 +18,6 @@ import org.dromara.hutool.core.io.IORuntimeException;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.core.text.StrUtil;
|
||||
import org.dromara.hutool.core.util.ByteUtil;
|
||||
import org.dromara.hutool.core.util.CharsetUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -100,7 +98,7 @@ public class ZipUtilTest {
|
||||
@Test
|
||||
@Disabled
|
||||
public void unzipTest() {
|
||||
final File unzip = ZipUtil.unzip("f:/test/mina-maven-3.6.2.zip", "f:\\test");
|
||||
final File unzip = ZipUtil.unzip("f:/test/apache-maven-3.6.2.zip", "f:\\test");
|
||||
Console.log(unzip);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user