java using textpad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • arun1987
    New Member
    • Feb 2008
    • 1

    java using textpad

    how to compile and execute network java programs using textpad?
  • atlantisstorm
    New Member
    • Feb 2008
    • 3

    #2
    Check the options under the "Tools" menu options.

    Comment

    • BigDaddyLH
      Recognized Expert Top Contributor
      • Dec 2007
      • 1216

      #3
      Originally posted by arun1987
      how to compile and execute network java programs using textpad?
      Are you expecting a "network" Java program to need special handling as far as compiling or executing, compared to an ordinary Java program?

      Comment

      • Nepomuk
        Recognized Expert Specialist
        • Aug 2007
        • 3111

        #4
        Originally posted by arun1987
        how to compile and execute network java programs using textpad?
        Do you mean, you wrote your program with textpad and want to execute it now? If so, simply open a command line ("Start -> Run -> cmd" if you're running Windows), change to the directory which contains your program, then run
        Code:
        javac nameOfYourClass.java
        java nameOfYourClass
        Hope that helps.

        Greetings,
        Nepomuk

        Comment

        Working...