From 3c5fa0daa02c46a18ca048cfeb3826f2396abd23 Mon Sep 17 00:00:00 2001 From: "Daniel L. Buchko" Date: Fri, 23 Aug 2013 18:57:52 -0400 Subject: [PATCH] Fixed handling of spaces in file paths Update Launcher to correctly handle spaced in file paths. --- .../java/org/springframework/boot/loader/Launcher.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/Launcher.java b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/Launcher.java index 5130b22fe19..0f8991a30ca 100644 --- a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/Launcher.java +++ b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/Launcher.java @@ -18,6 +18,7 @@ package org.springframework.boot.loader; import java.io.File; import java.lang.reflect.Constructor; +import java.net.URI; import java.net.URL; import java.security.CodeSource; import java.security.ProtectionDomain; @@ -67,13 +68,12 @@ public abstract class Launcher { protected void launch(String[] args, ProtectionDomain protectionDomain) throws Exception { CodeSource codeSource = protectionDomain.getCodeSource(); - URL codeSourceLocation = (codeSource == null ? null : codeSource.getLocation()); - String codeSourcePath = (codeSourceLocation == null ? null : codeSourceLocation - .getPath()); - if (codeSourcePath == null) { + URI location = (codeSource == null ? null : codeSource.getLocation().toURI()); + String path = (location == null ? null : location.getPath()); + if (path == null) { throw new IllegalStateException("Unable to determine code source archive"); } - File root = new File(codeSourcePath); + File root = new File(path); if (!root.exists()) { throw new IllegalStateException( "Unable to determine code source archive from " + root);