vote up -1 vote down star

I am a Mac user who wants to run a few .exe files from my Java process using Process and Runtime classes.

I know that it is not possible to execute .exe files in general in Mac OS X.

Is there a Mac application which can wrap these .exe files so that they can be executed ? Does Apple provide anything by itself ?

The alternative I am using now is to run the Java process in Windows. Yet, it is cumbersome in general.

flag

Completely pointless bitching: I loath the usage ".exe file" in place of "Windows executable". We now return you to your regularly scheduled question and answer site. – dmckee Mar 25 at 4:01
lol, i ve learnt to accept that there are other people in the world that are not technical. – Chii Mar 25 at 10:35

4 Answers

vote up 4 vote down check

Darwine

Edit: I should probably point out that this is not a 100% solution. Virtualized Windows will nearly always work better, through Parallels or some similar virtualization software. But Darwine is free and runs most Windows software acceptably.

link|flag
vote up 3 vote down

Besides wine you can get VirtualBox(free), Parallels($$$) or VMWare($$$).

link|flag
true, except it would be very hard for the java process to interact with those. – Evan Teran Mar 25 at 4:07
all can be set up to run exe file automatically. so a java process should be able to start them up fine. – gbrandt Mar 25 at 4:18
there is more to interacting than "starting" – Evan Teran Mar 25 at 4:26
If the program is written in java... why isn't there a mac version? – Jim Robert Mar 25 at 21:37
vote up 1 vote down

I don't know if it exists, but you would need something like wine for OSX. The reason why is that the .exe would nearly certainly use OS specific system calls and library functions.

EDIT: looks like it does exist

link|flag
vote up 1 vote down

Well, if it's a .NET application then you can possibly run it with Mono, but I'm betting it's a native binary and you'll have to use something like the aforementioned Wine. I thought it was really cool the first time I ran a .exe using Mono on OSX, it just felt wrong, so I had to share.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.