Fixes #52: Error file separator regex in Windows environment

- This bug can cause init failure of `AppNameUtil`

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
This commit is contained in:
Eric Zhao 2018-08-09 15:16:11 +08:00
parent 430ef8a99a
commit 227776a301
1 changed files with 8 additions and 2 deletions

View File

@ -74,8 +74,14 @@ public final class AppNameUtil {
return; return;
} }
command = command.split("\\s")[0]; command = command.split("\\s")[0];
if (command.contains(File.separator)) { String separator = File.separator;
String[] strs = command.split(File.separator); if (command.contains(separator)) {
String[] strs;
if ("\\".equals(separator)) {
strs = command.split("\\\\");
} else {
strs = command.split(separator);
}
command = strs[strs.length - 1]; command = strs[strs.length - 1];
} }
if (command.endsWith(JAR_SUFFIX_LOWER) || command.endsWith(JAR_SUFFIX_UPPER)) { if (command.endsWith(JAR_SUFFIX_LOWER) || command.endsWith(JAR_SUFFIX_UPPER)) {