javaexe

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • prasadjava
    New Member
    • Jun 2007
    • 1

    javaexe

    How to create java.exe file
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by prasadjava
    How to create java.exe file
    Create a jar file instead .

    Comment

    • codemiles
      New Member
      • Jun 2007
      • 1

      #3
      there no .exe files in java ,The executable files in java are .jar

      Comment

      • DwzR
        New Member
        • Jul 2007
        • 1

        #4
        Originally posted by prasadjava
        How to create java.exe file
        you can use JavaExe to create your .exe file

        Comment

        • praveen2gupta
          New Member
          • May 2007
          • 200

          #5
          Originally posted by prasadjava
          How to create java.exe file

          Hi,

          Java does not support exe concept. In java you will be writing program and saving it is .java extension , Java compiler will prepare a .class for that program.
          These .class files are executed by Java Interpretor.

          You can club many .class files in to a single jar [java archieve file]. These jar files can be run on JVM.

          Comment

          • odefta
            New Member
            • Jul 2007
            • 18

            #6
            It is possible to create an exe file from a java .class

            Make a shortcut - a create shortcut window appears... in 'type the location of the item textbox' insert the javaw command to point to the java class.
            For example: javaw Test.class

            Type next. A windows exe file will be created!

            Good luck

            Comment

            Working...