CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: Java2EXE

  1. #1
    Join Date
    Jul 2002
    Location
    Seattle Area, WA
    Posts
    241

    Java2EXE

    Does anyone know if there is anything like this? A program that can convert a java project (.class files) to an executable object for the given platform (only interested in MS Windows of course, since I'm looking for an "exe" generator).


    I know that MS J++ can do this, but they have broken (long ago) from the standard Java API and would inevitably cause re-writing many API methods/classes myself. So I don't want to go that route at the moment.

    Any suggestions?

  2. #2
    Join Date
    Jan 2001
    Location
    Germany
    Posts
    222
    Take a look at this one perhaps.
    Teamwork Software - Stuff That Does Something

  3. #3
    Join Date
    Feb 2010
    Posts
    1

    Re: Java2EXE

    Or take a look at JCGO, at Java to C translator. The produced C code is quite portable and could be compiled to a Windows executable (both 32-bit and 64-bit) file.

  4. #4
    Join Date
    May 2009
    Posts
    2,413

    Re: Java2EXE

    Quote Originally Posted by KingTermite View Post
    A program that can convert a java project (.class files) to an executable object for the given platform (only interested in MS Windows of course, since I'm looking for an "exe" generator).
    That would be a so called native Java compiler. This is the market leader,

    http://www.excelsior-usa.com/

  5. #5
    Join Date
    May 2006
    Location
    UK
    Posts
    4,473

    Re: Java2EXE

    Or take a look at JCGO, at Java to C translator.
    I would imagine that in the 8 years since KingTermite originally posted the request he/she has either found a solution or given up.

    As JCGO is a commercial product my guess is you are advertising it which is against the forum's rules.
    Posting code? Use code tags like this: [code]...Your code here...[/code]
    Click here for examples of Java Code

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured