Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone knows if there is a good service oriented framework (like Apache Thrift) that supports both C++, java and python with a similar set of features but with lighter requirement?
My main issue with thrift is that it requires boost (on the C++ side) that is a good, but too big, library.
I can think of a few alternatives, although I can't speak for how they compare to Thrift. All of these should have Java, C++, and Python implementations.
Google Protobuf
Apache Avro
Hessian
Of the three, I think Google's Protobuf seems the most promising and documented.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a SPARQL parser and i find Apache Jena/arq and Redland librdf.
But Jena has been written in Java,so is there a way that I use Jena's APIs in C/C++, (maybe with SWIG,...)?
Depending on what functionality you need, it may be plausible to interact with an Apache Fuseki server via the SPARQL 1.1 Protocol. Fuseki is Jena, just wrapped in a Jetty service in order to implement the protocol.
If this is far heavier than what you are looking for, and you desire interacting with Jena from C/C++, then JNI (or better yet, some automated wrapper like SWIG) may be your best bet.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Ideally would want libraries that handle creating graphs on screen well. For now these would be read-only, but eventually we may want to re-draw based on user GUI manipulations.
The other side of the story is SDEs. Would appreciate comments on any experiences people have of SDE calculations and modelling of stochastic math projections using Java. What are the likely performance tradeoff scenarios?
Would prefer to rely on widely used libraries if possible. Any thoughts?
jgraph is the general standard.
http://www.jgraph.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to create a simple desktop admin application for an IOS app that will work with a REST api I've built.
Couple of years ago I would go with Flex/Air, just makes it very simple. But since I am butt-hurt with the way Adobe have handled Flash in general, I am looking to write it using some different tool.
So far, Java Swing looks rubbish (UI-wise I mean). Others aren't cross platform and often too complicated.
Any suggestion?
Have you heard of JavaFx
http://javafx.com/
Check it out, it is cross platform and a good UI framework for RIA
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
For a project I need to read and write ESRI shapefiles. It should be very easy, as I don't need advanced features. Is something out there?
GeoTools supports shapefiles via a plugin. GIS is a complicated area and I think what you will find is that there are very few "simple" libraries out there. Any library powerful enough to do general GIS will unfortunately have a learning curve. That said, Shapefiles aren't that complicated and there's a lot of code out there for references purposes.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What is the best tool out there at the moment to convert java to c#? Apart from
j2ctranslator
j#
I use IKVM at the moment.
For your reference:
Sharpen by db4o
XES
RemoteSoft Octopus (commercial)
Note: I had no experience on them.
Don't. Leave them as Java and use IKVM to convert them to .Net DLLs.
http://www.ikvm.net/devguide/java2net.html
http://sourceforge.net/apps/mediawiki/ikvm/index.php?title=Ikvmc
I've had good results with this one. Much easier to use than Sharpen.
http://tangiblesoftwaresolutions.com/Product_Details/Java_to_CSharp_Converter.html
Microsoft has a tool called JLCA: Java Language Conversion Assistant. I can't tell if it is better though, as I have never compared the two.