which is the best resouce for all fundamental of java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mmdeshmukh
    New Member
    • Jan 2007
    • 5

    which is the best resouce for all fundamental of java

    plz end me resourse which have all fundamental

    and how to create exe for java
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by mmdeshmukh
    plz end me resourse which have all fundamental

    and how to create exe for java
    You mean a Java source that covers all the fundamentals which is not thescripts.com? That would have to be the Java Language Specification itself.

    For that exe, in Java we create .jar files which execute like .exes

    Comment

    • DeMan
      Top Contributor
      • Nov 2006
      • 1799

      #3
      There are programs available to compile .exe files from java source for (some) different platforms. These programs, (IMHO), defeat the purpose of the Java language - Platform Independence (It's sort of compiled AND THEN interpreted - so theoretically any java compilation will work on any platform provided tou have the appropriate JAVA Runtime Environment(or Virtual Machine or whichever thingummy)).

      The programs are generally not made for profit, and aren't guaranteed to work perfectly.
      Last edited by DeMan; Jan 11 '07, 08:46 PM. Reason: added source

      Comment

      • mmdeshmukh
        New Member
        • Jan 2007
        • 5

        #4
        Originally posted by r035198x
        You mean a Java source that covers all the fundamentals which is not thescripts.com? That would have to be the Java Language Specification itself.

        For that exe, in Java we create .jar files which execute like .exes

        Thanks, for reply
        yes we can create .jar file but i wnt to ask that i have developed one s/w in java
        ok and as any others ms product can i create .exe for it so that my user can use it just by clicking here i do not want to use any s/w which cover .jar into .exe just using java cammand i wnto do it

        Comment

        • mmdeshmukh
          New Member
          • Jan 2007
          • 5

          #5
          Originally posted by DeMan
          There are programs available to compile .exe files from java source for (some) different platforms. These programs, (IMHO), defeat the purpose of the Java language - Platform Independence (It's sort of compiled AND THEN interpreted - so theoretically any java compilation will work on any platform provided tou have the appropriate JAVA Runtime Environment(or Virtual Machine or whichever thingummy)).

          The programs are generally not made for profit, and aren't guaranteed to work perfectly.
          thanks for rply

          Comment

          • JulianP
            New Member
            • Nov 2006
            • 11

            #6
            In reponse to this post. To create the .jar file do you just add in the .jar to the file name?

            Comment

            • r035198x
              MVP
              • Sep 2006
              • 13225

              #7
              Originally posted by JulianP
              In reponse to this post. To create the .jar file do you just add in the .jar to the file name?
              No. You use the Java Archiving tool. You have to type a simple command as
              explained here

              Comment

              Working...