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 developing a visualization software and my current aim is to visualize some sort of networks in 3d. It doesn't really matter how the nodes and edges are represented, as long as one can see the network in 3d. I'm a newcomer in the field of 3d objects, so any libraries, tutorials or websites are welcome.
Thank you very much.
If you just want a way to display these, you may want to try an existing visualization program like ParaView. It is built on an extensive visualization library called VTK. Both are open source and cross platform. VTK can be programmed using Java, C++, and other languages.
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
Does anyone know of a good method to automate converting Java DTOs to TypeScript?
(these objects used in JSON REST APIs)
Is there a methodology, technique or technology which would allow me to do this more quickly and efficiently?
I'd take a look at some of the more up-to-date JavaScript code generators working with Google's Protocol Buffers at GitHub: google/protobuf → Third Party Add ons as this is a language-agnostic Data Transfer Object technology with strong Java focus and heavy user base so using it might be "quick and efficient" and solid choice
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 working on a program which gathers data and stores it in a file. I need to be able to write a program which reads from the created file and plots a scatter/bar/pie graph from it. Does anyone know any Graphing Libraries which I can use to do this? I've seen suggestions for libraries which can graph nodes, vertices etc. but none for common graphs. Help would be appreciated. Thanks
For charts you can use JFreeChart. It is an open sorce java library with a good API.
If you want to draw graphs (trees for example) you can use JGraphX which is also an open source 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 8 years ago.
Improve this question
I'm looking for a Java library to create block diagrams, which might look as in the picture:
So far I couldn't find a satisfying solution. I would be thankful for any suggestions.
Have you tried jGraph yet? It's open source under the BSD license.
There's a Java API for GraphViz. GraphViz is capable of much more than just those block diagrams though, so there might be a learning curve.
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
what is the best Java library for manipulating graphs (specifically, for social network analysis)? I've seen Jung, but I was wondering if you knew anything better (I don't need to visualize networks, only computation).
Thank you
I've found jgrapht pretty useful - it has all the major algorithms (e.g. Bellman-Ford, ...)
neo4j is the choice
And here is a video
If you are aiming for high efficiency
http://grph.inria.fr/
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
Are there any fuzzer libraries out there for Java?
I'd like to sprinkle fuzzing capabilities into existing Java web-based automated integration tests. I've done a lot of searching but I'm coming up empty for a library that supports HTTP/S. There are a lot of Python tools, but I'd like to stick with Java since that's what the programmers are using.
JBroFuzz essentially has the fuzzing capabilities I need, but I need an API and they haven't released one yet.
A quick search turned up the javafuzz library.
The people with JBroFuzz have made it possible to use it as a library:
http://www.owasp.org/index.php/OWASP_JBroFuzz_Tutorial#How_to_Use_JBroFuzz_as_a_Fuzzing_Library