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
Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?
In Red5, we are adapting an RTP/RTSP library written using Mina. If you would like to check it out, go here: http://red5.googlecode.com/svn/java/plugins/trunk/rtspplugin/
The original library was written by Matteo Merli (matteo.merli#gmail.com) and yes, we have his permission to modify it.
You would have to write a wrapper yourself, I'm afraid. Netty has a pretty flexible architecture that would allow that.
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 5 years ago.
Improve this question
I have written a complex simulation software in Java, in which I need to use a lot of statistical distributions (Gamma, Poission, and Exponential). So far, I have been using the Apache Commons library for this, but the calls to Apache Commons are consuming a lot of runtime, which I found out by using a Java profiler (yourkit). The average runtime is > 4minutes, which is unacceptable for me.
Since I am trying to shorten my program's runtime, I was wondering if there is any better library which I might include/attach directly with my Java code?
I use the Eclipse IDE.
Try this,
JDistlib—Java Statistical Distribution Library.To find more, click 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
I need to implement scanning software in a java program I am working on, what libraries will I need to do this? I have heard of JTwain and JSANE. Do I need to pay for both of these if I wish to make my software for commercial use?
JSANE, JTWAIN and Morena are the options. I selected Morena due to its cross platform compatibility and its ability to use both SANE and TWAIN interfaces.
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'm looking for a framework or an implementation of Asynchronous Java RMI (preferably using Lipe RMI, but not absolutely necessary). I have done a little googling but haven't actually found a straightforward implementation yet. If any of you have already implemented it and would like to save me the time of doing it myself that would be wicked awesome.
It probably isn't relevant, but i'm going to actually be using this over Android to communicate with my RMI back end (which is why I need asynchronous RMI).
Thanks
I just got done implementing and releasing a fork of Lipe RMI that does exactly this, in case anybody is interested.
https://github.com/terraframe/lipermi
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
Is there any C++ network library similar to JBoss's Netty? I need an architecture where I can add protocol handlers to a list and process network packets as objects.
I have used ACE although I wasn't especially happy with it.
I have used LibSoup, which is a C http client and server library. It has a c++ libsoupmm.
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'd like to set up a large linear programming model to solve an interesting problem. I would be most comfortable in Java. What tools/libraries are available?
There were several suggestions from an earlier question that I posted:
CPLEX
Dash
OptimJ
COIN-OR
lp_solve
and possibly more...
I used lp_solve with success. It looks like there is a native Java API, but I've only used the text file interface. It supports the semi-standard MPS and LP file formats, which I found more convenient for trying out different solvers (such as glpsol).
Currently, google digs up this Java Linear Programming libs:
http://scpsolver.org/
http://javailp.sourceforge.net/
http://www.joptimizer.com/linearProgramming.html
http://www.win-vector.com/blog/2012/11/yet-another-java-linear-programming-library/
http://commons.apache.org/math/userguide/optimization.html
http://ojalgo.org/