End Process in Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mague
    New Member
    • May 2007
    • 137

    End Process in Java

    Hello,

    I was wondering weather the was a way to end a process in java. I have looked for ages and cannot find anything (well found a few things i can't understand)

    Thanks
    - Mague
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Have you read the API documentation for the Process class? An object
    of that class is returned to your code when you create a process. You can kill
    it as well.

    kind regards,

    Jos

    Comment

    • Mague
      New Member
      • May 2007
      • 137

      #3
      Originally posted by JosAH
      Have you read the API documentation for the Process class? An object
      of that class is returned to your code when you create a process. You can kill
      it as well.

      kind regards,

      Jos

      Thanks. sorry i forgot about this post. :o

      Comment

      Working...