poidasmith / winrun4j

WinRun4J Java Application Launcher
http://winrun4j.sourceforge.net
212 stars 63 forks source link

Can only have 1 java.library.path entry #10

Closed joejensen closed 11 years ago

joejensen commented 12 years ago

On windows ; is used as the path seperator for the java.library.path, however, the current ini parser treats all ; as starting a comment so you can never have more than 1 entry in your library path.

Either there should be a method of escaping the ; to prevent a comment from being started or the library path should be specified in the same manner as the classpath ( ie java.library.path.1=...)

poidasmith commented 12 years ago

To work around this you can quote the library path: vmarg.1="path1;path2"

But I like the idea of adding the specific java.libarary.path.1 options - will add for the next release.

poidasmith commented 11 years ago

A new release is available with java.library.path.N INI keys.