how to implement something like remote desktop or LogmeIn in Java? should I use something like Java.awt.Robot? which libraries should I look into?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
java.awt.Robotwill be indispensable for emulating pointer and keyboard events on the controlled machine. Besides that I can suggest looking up how the VNC protocol works andI can’t really recommend any library to support you doing this, as it’s really a niche project. I have my own library doing this, but it’s closed source proprietary stuff. It’s not really hard to get something up an running, good luck.