Searched refs:windowsPath (Results 1 – 1 of 1) sorted by relevance
375 String windowsPath = URLDecoder.decode( url.getPath() ); in getOfficeVersions() local377 while( windowsPath.indexOf("/") != -1 ) { in getOfficeVersions()378 int forwardSlashPos = windowsPath.indexOf("/"); in getOfficeVersions()379 String firstPart = windowsPath.substring( 0, forwardSlashPos ); in getOfficeVersions()380 String lastPart = windowsPath.substring( forwardSlashPos + 1, windowsPath.length() ); in getOfficeVersions()382 windowsPath = lastPart; in getOfficeVersions()386 windowsPath = firstPart + "\\" + lastPart; in getOfficeVersions()389 int lastSlash = windowsPath.lastIndexOf("\\"); in getOfficeVersions()390 windowsPath = windowsPath.substring( 0, lastSlash ); in getOfficeVersions()391 results.put( parts[0].trim(), windowsPath ); in getOfficeVersions()
Completed in 7 milliseconds