aspose file tools
The moose likes Java in General and the fly likes Checking for a Windows Service from Java Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Checking for a Windows Service from Java" Watch "Checking for a Windows Service from Java" New topic
Author

Checking for a Windows Service from Java

Barry Brashear
Ranch Hand

Joined: Jun 05, 2001
Posts: 303
Is there a way from Java to determine if a particular windows service
is started?

Thanks.
Horatio Westock
Ranch Hand

Joined: Feb 23, 2005
Posts: 221
I really don't know what the proper way to do this is, but seeing as it's windows only, you could run the command "net start" and read the output, looking for the service you are interested in.
Merrill Higginson
Ranch Hand

Joined: Feb 15, 2005
Posts: 4864
I agree with Horatio. That sounds like a good way to do it.

If you're not familiar with how to start a process outside the JVM, the call is Runtime.getRuntime().exec("net start");

I'd read the following article, though, before coding this, because there are lots of pitfalls in running processes outside the JVM.

http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html


Merrill
Consultant, Sima Solutions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Checking for a Windows Service from Java
 
Similar Threads
how can we write memory resident program
How to call oracle reports from JAVA web application
How to run Java Program as windows service?
tomcat did not get started from eclipse
Listening for connections