exe-to-app

deadimp

New Member
Messages
249
Reaction score
0
Points
0
Not really. Since it's an exe, it's probably gonna be a native Win32 executable, which will have no connection to Java. The low level of operations in the binary are probably not at all possible in Java.
The closest you might be able to get with a conversion is if it's a .NET executable, whereas you could use CLI or ILASM to JVM byte code converter, but that would require a crapload of effort with framework transitions and even .NET specifics like delegates and events and who knows what else.

In summary: No
 
Last edited:
Top