This commit is contained in:
Looly 2022-06-16 12:10:56 +08:00
parent 4c7ac0042c
commit 60dd7ce563
5 changed files with 23 additions and 2 deletions

View File

@ -3,7 +3,7 @@
-------------------------------------------------------------------------------------------------------------
# 5.8.4.M1 (2022-06-14)
# 5.8.4.M1 (2022-06-16)
### 🐣新特性
* 【extra 】 Sftp增加构造重载支持超时pr#653@Gitee
@ -11,6 +11,7 @@
* 【json 】 修改byte[]统一转换为数组形式issue#2377@Github
*
### 🐞Bug修复
* 【extra 】 修复createExtractor中抛出异常后流未关闭问题issue#2384@Github
-------------------------------------------------------------------------------------------------------------

View File

@ -142,6 +142,14 @@ public class ReUtilTest {
Assert.assertEquals("我有个\\$符号\\{\\}", escape);
}
@Test
public void escapeTest2(){
String str = "a[bbbc";
String re = "[";
final String s = ReUtil.get(ReUtil.escape(re), str, 0);
Assert.assertEquals("[", s);
}
@Test
public void getAllGroupsTest() {
//转义给定字符串为正则相关的特殊符号转义

View File

@ -59,7 +59,8 @@ public class StreamExtractor implements Extractor{
}
/**
* 构造
* 构造<br>
* 如果抛出异常则提供的流将被关闭
*
* @param charset 编码
* @param archiverName 归档包格式null表示自动检测
@ -75,6 +76,8 @@ public class StreamExtractor implements Extractor{
this.in = factory.createArchiveInputStream(archiverName, in);
}
} catch (ArchiveException e) {
// issue#2384如果报错可能持有文件句柄导致无法删除文件
IoUtil.close(in);
throw new CompressException(e);
}
}

View File

@ -204,4 +204,11 @@ public class HttpRequestTest {
HttpRequest httpRequest = new HttpRequest(urlBuilder);
httpRequest.setMethod(Method.GET).execute();
}
@Test
public void get122Test(){
String url = "http://122.112.234.240:9007/monitor/devices/real/59312710/all/0";
final String s = HttpUtil.get(url);
Console.log(s);
}
}

View File

@ -77,6 +77,8 @@ public class JSONParser {
case ';':
case ',':
if (tokener.nextClean() == '}') {
// issue#2380
// 尾后逗号Trailing CommasJSON中虽然不支持但是ECMAScript 2017支持此处做兼容
return;
}
tokener.back();