Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm interested to create android application that have all the functionality of PC mouse,keyboard and it can control the connected PC via wifi but I have little knowledge about this and I don't know where to start.I like to know are there are any protocol to do this,are there are any open source code project that i can download?
You should understand that this is not just Android application.
This is a pair of applications:
Computer - server
Android - client
And you get to decide how they will communicate. You can write your server application on C++, which will receive data via BlueTooth with Android and call the system API.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hello I have an Arduino UNO connected to its LCD display. I programmed it to display any text you want by sending serial text to it. I have been Google Searching ways to do this but I haven't seemed to find a way for sending serial in java.
I am looking for an API or someway to possibly send serial text to my Arduino via USB. I chose java because I am more familiar with it.
Try RXTX Java library, it's a java serial communication library and works great with Arduino. Also the official Arduino website provides an example for Java-Arduino communication with help of this library, see here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Im developing a home control system that i can use in my home. I've figured how to control lights, AC/Heat and alarm with a java application that i made. But there is one thing that i cant figure out how to do. I want to play music from spotify on my speakers, with this java application that i made. I've figured out how to play music from a library on my server, but i can't find a example on how to get acces to the spotify library with java. Is it possible at all? If so, how can i do it?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a Java Library that supports Bluetooth LE connections, specifically GATT and if I am lucky Apple's new iBeacon Protocol. It needs to be able to broadcast itself and if possible be able to initiate a connection.
I have seen BlueCove and even gave a shot at extending it to support Bluetooth LE, but could not get it to work. Does anybody know of any supported Bluetooth Libraries that work with Java SE, not for Android or Java ME, because that seems to be all I can find.
Any Ideas?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm trying to create an app for Android that simply sends a command to an SSH server. No response needed, I just need to be able to send a command. I was wondering if there's any java library out there that I could use?
No advanced stuff needed, just a pure connection to send the command.
You are searching for JSch.
Other libs are jaramiko, paramiko, trilead-ssh2 . A place where you can browse the source for trilead is the connectbot project. Please notice that connectbot also uses this unmaintained lib.
It also exists a commercial SSH Java lib: J2SSH Maverick
Note: Answer refactored due to comment.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am working on an embedded device which has Android OS on it, Its not a smartphone. I need to write a webserver in android for which I am using iJetty. I am planning to have service expose as REST webservice. For this I am looking at light weight REST server framework that I can use inside by apk file.
I did some research and found Restlets for Android
Do you know of any good light weight REST server framework that you would like to recommend?