Tikal : %20 bug in getAppRootDirectory, problem loading plugins

Issue #162 resolved
Former user created an issue

Original [issue 162](https://code.google.com/p/okapi/issues/detail?id=162) created by bach2k%gazeta...@gtempaccount.com on 2011-02-02T10:52:57.000Z:

What steps will reproduce the problem? 1. Run tikal with pugins in any path that has space in name for ex. "Program Files/tikal" 2. 3.

What is the expected output? What do you see instead?

Plugins should be loaded from "Program Files/tikal/dropins". Instead tikal searches "Program%20Files/tikal".

What version of the product are you using? On what operating system?

0.9, WinXP

Please provide any additional information below.

The error is in method Main:getAppRootDirectory in line

return Util.getDirectoryName(Util.getDirectoryName(url.getPath()));

use URI instead for ex. this should be fine:

new File(url.toURI()).getCanonicalFile()

best regards

Comments (1)

  1. Log in to comment