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 3 years ago.
Improve this question
I am attempting to get Java to communicate with a device that only supports Bluetooth 4.0
I've done some testing with BlueCove, but to the best of my knowledge, it does not support Bluetooth 4.0
Are there any libraries available to achieve this? I've searched high and low and came up with no straight forward solutions.
If there are none available, could someone recommend the best way I could make it work? In other questions similar to this one, some people have suggested doing a JNI wrapper for existing C/C++ libraries. If that is the best approach, what would be the best library to wrap?
I'd rather not have to resort to doing that, but if it's the only way I guess I will need to. I've been constrained to using Java and a device that only supports Bluetooth 4.0
EDIT: For anyone interested, my solution was to go with using Bluegiga's BGAPI. This limits me to only using their dongle (BLED112) BUT it is a workable solution. I went with this Java implementation of BGAPI. It has a dependency for an RXTX library, I decided to go with this one . Hope this helps someone.
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 7 years ago.
Improve this question
I'm looking for a free scalable chat solution, sort of the equivalent of SOLR but for chat. I have a LAMP application that I need to integrate the chat with. For search I'm using SOLR and since it has a REST interface integrating with it was easy and didn't require writing any Java.
Is there a similar ready made solution that's also high peformance for chat?
Obviously MySQL/PHP/AJAX based periodic polling scripts are out of the question.
Go with a good jabber implementation.
http://www.igniterealtime.org/projects/index.jsp
http://www.igniterealtime.org/projects/openfire/index.jsp
http://www.igniterealtime.org/projects/smack/index.jsp
http://jwebsocket.org/
They have a chat demo you can download and modify (it is licensed under LGPL).
I'm developing a facebook-like chat with Node.js, it's not so difficult and works great. I'm using "socket.io" and now I'm going to develop an android app too, with https://github.com/Gottox/socket.io-java-client
Do you need private chat? or only public? Igniterealtime as #krishnakumarp posted seems much more complex and complete.
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 am looking for an open source audio library similar to BASS from un4seen (http://www.un4seen.com/) to be used in Java applications. Could someone point me to a similar project?
If you don't mind using native libraries, OpenAL has at least these two Java wrappers:
JOAL
LWJGL
I have yet to try it myself, but it feels pretty solid as LWJGL, which many games are based on, has chosen to use it.
Try Beads: http://www.beadsproject.net. Available as jar, processing library or Eclipse project.
How about JSyn ? According to their website, they will release the source code soon.
Another alternative is FMJ. I actually think this is better than the JSyn which I specified above.
Check out jAudio as well.
JSyn, a modular audio synthesizer, was just released as open source on GitHub under the Apache License V2.
https://github.com/philburk/jsyn
As of 2015
FMJ and JAudio are pretty out of date.
JSyn and Beads are good to go.
of the two, JSyn is more popular in Google, but beads has a seemingly more active community.
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 recently found this which is great as its the API but it doesn't seem to allow me to search
http://docs.oracle.com/javase/7/docs/api/
I am coming from a .NET background so need to be able to search the API.
I guess you are looking for something like this:KiwiDoc - A fresh way to browse and search javadoc
Auto-completion rocks!
For searching in the class/package names and within classes I can highly recommend the javadoc-search-frame. It's available for Google Chrome as an Extension and for all browsers that can run userscripts.
It provides a pretty useful quick-search functionality.
For a full-text search, I'd use Google as well.
Just use google
http://www.google.ee/search?q=RuntimeException+site%3Ahttp%3A%2F%2Fdownload.oracle.com%2Fjavase%2F6%2Fdocs%2Fapi
Use DMelt search
http://jwork.org/dmelt/search/
It searches words in the complete Java JDK 9, plus in 40,000 classes of external community Java packages
Just use CTRL+F in your browser.
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 3 years ago.
Improve this question
My requirement is to access moodle as a backend engine and front end will be mint in Java[jsf]
now I want to know that is there any interface available to access Moodle from Java , using WebServices or any APIs or anything.
Initially I tried using Sakai which is in Java, but the problem is there is no clear API written for it.
So let me know the option for using Moodle from JAVA.
Also if it is possible than what will be the feature available through the WebServices or API. ?
Or any other LMS that is in Java and provide API or WebService to make this working.
I reviewed many LMS (dokeos, docebo, ATutor) last year and to be frank all of them sucked. Moodle was the most stable, had more plugins and a huge community.
I came across Project Sakai, I havn't tried it, but sounds promising. Something very interesting from Google is cloudcourse (in python I guess, but looks awesome demo). But not a complete LMS (compared to moodle).
You forgot to add Chamilo they have a list of available web services (SOAP) that you can use to create courses, users, add users to courses, etc
https://www.olat.org/ and https://www.openolat.com seem a good alternative to moodle.
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 really tired of using the Google Web Toolkit for accessing Google Maps in Java using Netbeans... Does anybody know of a good alternative providing a simple(r) API?
Any help would really be appreciated!
OpenStreetMap has a good API in combination with OpenLayers.
Good luck with that!
Driving instructions are included, but since OSM is user-generated, you cannot rely 100% on this information. See OSM-Wiki article "Routing"
If you want another API that has great routing and other mapping alternatives with a J2ME API you can take a look
[Shameless plug]
http://developer.decarta.com
[/shameless plug]
We also do mapping, geocoding, and other cool spatial functionality.
We have an android API, iOS API, mobile JS, and a desktop JS along with XML web services.