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 have a copy of the Java documentation. It takes me forever to find what I'm looking for, I can't search, and the layout is terrible.
Is there an MSDN equivalent to an API reference for Java, that will run in an application that provides a searchable index and categories?
Thanks
Sure, if you're are using windows or a chm viewer on linux or something else, at this site: http://www.allimant.org/javadoc/index.php
you can find the complete api reference in an unique file (indexing and searching capabilities are also available)
If you use NetBeans, you can do a full text search in the Javacocs API (Shift-F1), right from within the editor (e.g. the selected word)
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 take a lot of screenshots of websites (thousands/month).
Each screenshot captured should include address bar of the browser (top), taskbar of the desktop (bottom) and webpage (in between) plus i need each saved image file to be named after the website's url.
Can anyone suggest me any software ? I tried several s/w, none supported this .
Can I do this using java or any other language ?
Yes, of course you can do it using Java. Have a look at the Robot Class therefore.
The method createScreenCapture should exactly do what you are looking for.
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 want to develop a small application in JAVA, for personal use, that solves the derivatives and integrals. Can you tell me some good library to do this, and some example?
Thanks
Commons Math contains the ability to integrate using different methods - see here, section 4.5. The example here shows you how to use the TrapezoidIntegrator, the others work pretty much in the same way.
SO post
Library reference hosted on google code.You can also use JLink with Mathematica to send your calculations part to mathematica and get appropriate results back.
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
The title is as clear as it gets. I'm searching for the jain-sip documentation but I'm unable to find it. There is a a link to documentation at the jsip.java.net website but I get send to the hudson builder.
The latest JAIN-SIP javadoc is no longer hosted nor built by Jboss. To locate the latest stuff try the official project site first: https://java.net/projects/jsip
To save some time, here is the latest build spot as of 5/28/14:
https://mobicents.ci.cloudbees.com/job/JAIN-SIP/
You can also find a proper javadoc on the following link JAIN-SIP javadoc. It has the API's in the typical javadocs style.
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 have extracted a number of OleObject files from a Word DOCX document (oleObject1.bin ... etc.) Is there Open Source code (primarily in Java) to read this. (I would only be interested in *.net code if it can be easily ported to Java). I am not interested in the rest of the Word document (in this question). There is an Apache project (http://poi.apache.org/) - I'd be interested in how well this works
Apache POI - POIFS is a Java implementation of the OLE 2 Compound Document format. In my experience it works pretty well for the sort of scenario you are reffering to. Check it out.
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