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'm working on an Android program for my senior capstone project, and having trouble getting the correct environment configured. I'm using a 64-bit windows machine with Eclipse 3.5 and JDK 1.6u21. From what I've been able to gather, Eclipse 3.5 doesn't play well with update 21 on 64 bit architectures, and it's recommended to use JDK 1.6u20. Problem is, I can't find update 20 anywhere. Can anyone point me in the right direction? Thanks.
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html
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 2 years ago.
Improve this question
I don't have admin rights on my machine. Hence I am looking for a zipped version of JDK 9. Is there any site that can help? Thanks.
Which implementation are you looking for?
For adoptopenjdk it's here.
For Oracle.
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 am developing on Windows and replaced Oracle JDK with OpenJDK.
I've noticed that JavaFX is not included in OpenJDK.
Where can I get pre-built JavaFX libraries for OpenJDK (Windows)?
https://wiki.openjdk.java.net/display/OpenJFX/Download seems to offer early access builds only.
The JavaFX site offers a link to download the JavaFX libraries for Java 11 and newer.
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 hava to referenced something of tools.jar which is a part of jdk lib.
and I want to get its help documentation and java source code.
Please tell me how to get it or where to download.
Thank you very much!
you cant get the source or javadocs for the sun/oracle tools.jar, since that code is not released, but you can go look at the openjdk project's tools, located here - http://openjdk.java.net/tools/index.html
it wont be the same thing, but it'll be close.
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
Is there an application like Ingredients which lets your browse the Coco API but for Java on OS X?
Local:
Since you are using OSX if you have the Javadoc downloaded and expanded locally you can use Spotlight.
Online:
Here is a neat trick if you use FireFox.
Your best bet would probably be to just browse the default javadoc-based HTML pages.
http://download.oracle.com/javase/6/docs/
I found an application called Dash which I have been using it for years now. It is available in the Mac App Store (MAS) here: https://itunes.apple.com/us/app/dash-docs-snippets/id458034879?mt=12
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
Where do I find the javax.crypto source code?
--update
Thanks for the OpenJdk version, but what about the jdk6 version?
Download links
http://hg.openjdk.java.net/jdk7/jdk7/jdk/file/tip/src/share/classes/javax/crypto (OpenJDK version)
http://download.java.net/jdk6/source/ (JDK6 version)
Most of the classes in there are apparently only interfaces; the security algorithms are often written natively (ie, C). Interfaces are here, for one place.