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 5 years ago.
Improve this question
I'm writing an IDE in Java and I'm looking for a library that will highlight the code for me. I've found plenty for javascript, but that wont do me any good. I'd love to write my own but I don't have the foggiest idea where to start. Are there any Java libraries out there?
Take a look at jsyntaxpane; it may be the easiest starting point rather than starting from scratch.
I've used this library and it does the job pretty well: RSyntaxTextArea
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 6 months ago.
Improve this question
How to use Javafx and Hibernate in one project? Does anyone have an example with that? It will be very helpful. It's necessary for me to understand that.
If I were you I'd hop on github and search for projects that have both javafx and hibernate in it.
https://github.com/search?q=javafx+Hibernate&type=Repositories&ref=advsearch&l=&l=
There is this one project here, that seems to be a boilerplate example for the two.
https://github.com/No3x/javafx-boilerplate-hibernate
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 5 years ago.
Improve this question
I'm doing a big machine learning project in Java.
I tried some libraries but they were uncomfortable. Not many algorithms, few examples, unclear function parameters.
So, I wanted to ask if anyone knew a convenient library in Java for machine learning. (In terms of: easy to import, easy to use, lots of samples, etc.)
In addition, I have already read the csv file to a matrix. So if the library uses it, it will be better. Thank you.
Here are a few links
ApacheSAMOA: https://samoa.incubator.apache.org/
Weka: http://www.cs.waikato.ac.nz/ml/weka/
Rapid Miner: https://rapidminer.com/
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 5 years ago.
Improve this question
Could someone recommend me lightweight, easy to use Java library for stochastic gradient descent optimization?
This may be a late reply. Try MLLib by apache (part of SPARK project) or WEKA. Only to optimize a linear regression, you might like to code yourself rather than going for a library.
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 need help in choosing the best library to implement the Kolmogorov-Smirnov Test (Two-Sample) in Java.
I have tried using JavaStatisticalClass.
Problem with this library is that I can't specify/choose the "Significance Level" by myself.
Do you have any suggestions of other libraries where I can chose the significance level?
Instead of specifying the significance level a priori you can determine the p-value using JavaStatisticalClass and compare this value with the intended significance.
How about jsc.goodnessfit.KolmogorovTest?
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 thinking of creating a project for controlling my integrated webcam in java.
I have tried searching and found that we need to use JMF for this kinda stuff.
But i couldn't find any good tuts or books which explains JMF from scratch.
I've actually had more success using Xuggler than FMJ or JMF. Here is a demo program for displaying from a webcam:
https://github.com/artclarke/xuggle-xuggler/blob/master/src/com/xuggle/mediatool/demos/DisplayWebcamVideo.java
The following link explains JMF with nice examples:
http://grack.com/downloads/school/enel619.10/report/java_media_framework.html