tags:

views:

88

answers:

2

I want to access the Skype application installed on my pc through a java program so that I can access the "Search for people on skype" feature of the application so as to search for skype users through the program and not manually.

So how can I get control of the application through java.

+2  A: 

There is a Skype API library for JAVA. Not sure if it is still maintained...

Zed
The latest news are from 2006... https://developer.skype.com/wiki/Java_API
Martin Klinke
I'd love to hear from people with actual experience with this library.
Thorbjørn Ravn Andersen
+1  A: 

If you're on Windows, you may be able to access Skype via a Java-COM bridge, e.g. JCom, JACOB or J-Integra. Beyond this technological requirement you need to find API for the feature you are looking for. This is probably the more uncertain part - if there is none, well good luck ;)

Martin Klinke