Hi,
Under linux, I have java code that runs a c executable using
Runtime.getRuntime().exec()
Before running that I have to set the LD_LIBRARY_PATH system
variable..
I tried Runtime.getRuntime().exec("setenv ....")
Runtime.getRuntime().exec("export ... ")
and I also tried System.setProperty();
and non of the above seem to do the trick..
any hints?
Thanks
Robert Klemme - 31 May 2007 16:45 GMT
> Hi,
>
[quoted text clipped - 12 lines]
>
> any hints?
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runtime.html#exec(java.lang.St
ring[],%20java.lang.String[])
robert