feat: script processor support cmd and powershel by fddc

This commit is contained in:
tjq 2022-09-18 00:48:02 +08:00
parent 45f7b17e14
commit 483227f840
2 changed files with 2 additions and 2 deletions

View File

@ -22,6 +22,6 @@ public class CMDProcessor extends AbstractScriptProcessor {
@Override
protected Charset getCharset() {
return Charset.forName("GBK");
return Charset.defaultCharset();
}
}

View File

@ -22,6 +22,6 @@ public class PowerShellProcessor extends AbstractScriptProcessor {
@Override
protected Charset getCharset() {
return Charset.forName("GBK");
return Charset.defaultCharset();
}
}