[EMAIL PROTECTED] wrote:
> Hi:I got a java application that uses exec("nativeApp.exe") to start a
> native application. It works fine on NT. But on Linux exec("a.out")
> gets an exception saying a.out could not be found. a.out is placed in
> the same directory as java app does. What I missed?Thank you.Lee
Lee,
Either:
- ensure that the current directory is part of your PATH, or
- invoke as exec("./a.out");
--
David Marshall email: [EMAIL PROTECTED]
VM Systems, Inc. phone: 1-941-596-2480
Naples, FL USA fax: 1-941-596-2483
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]