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 supporting a project that uses Java 6 and need to go deep into the Java source (sun.net.www.protocol.http.HttpURLConnection to be precise). However src.zip attached in Java JDK folder does not contain source code for sun.* packages. Is it possible to download the source code I need and if yes - where from?
Do you need the specific sun.* class?
How about grepcode?
http://grepcode.com/search?query=sun.*
You can also find the sun.* code in the jdk sources and download it here:
http://hg.openjdk.java.net/jdk6/jdk6/jdk/file/a0ea2ba34bdd/src/share/classes/com/sun
(I've put a link to jdk6 for you, but you can find any version there, of course)
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 last year.
Improve this question
I downloaded the jdk-17 from below link: https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.tar.gz
But I can't find the src.zip in the jdk folder, which should contain source code. From where can I download that?
Maybe this is what you want:jdk-17
UPDATE :
Download 'oracle linux jdk', and you can find src.zip via path jdk-17_linux-x64_bin\jdk-17.0.2\lib\src.zip ;
This link jdk-17 stores the decompressed files of src.zip. Since it's not officially certified, we'd better ignore it even if it's official source code.
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 remember in the past there was an infrastructure given to the public to check the compatibility of the JVM and its libraries itself. If I am correct, that was Java Device Test Framework, which now has magically disappeared. In its place is only the Java Device Test Suite, which is actually only for ME edition (and commercial) or Java Compatibility Kit, which again is not open source & publicly available.
What I'd like to accomplish is to use these tests myself on other non "full JDK" JVMs, like Avian, MobiVM, CrossMobile or TotalCross, in order to have a rough estimation of what is missing and what to expect.
Definately I don't need to check the full JDK -- that would be out of concept. What I am more interested is more base functionality, i.e. things that one could find on the java.base (at most). So, is there any (preferably) open source toolkit available?
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'm not asking for an opinion here - just a fact: is there a plugin, tool, or technique that lets me write classes or at least method bodies directly in bytecode in Java in either Eclipse or IntelliJ, and what is it? I'm not looking for runtime codegen, I want this at compile time.
I found one here: https://plugins.jetbrains.com/plugin/8461-bytecode-editor but there is no download link and I have no idea how to build it (I tried, I really did). But it's basically everything I want.
In .NET I use the excellent IL Support plugin for this, but I haven't found a similar solution for Java.
There is a download link on that page but you don't need to download it directly so that doesn't matter. IntelliJ provides a plugin installer In Settings>Plugins. At the botttom of the Plugins page is a button to 'Browse repositories'
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've been using jeromq for the last 6 months or so, and I'm getting a colleague up to speed. Is there any reputable location to download a JAR file? The version I have is jeromq-0.3.0-SNAPSHOT.jar but I can't remember for the life of me where it came from, and I want to get him a legitimate version.
(Yes, I can build from source too, but I would rather give a colleague a link to a reputable website than send him a .jar file from my computer or force him to build from source.)
From the maven repository?
http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.zeromq%22%20AND%20a%3A%22jeromq%22
Though I don't see the snapshot there.
Direct link to latest jar (0.3.4 at this time): http://search.maven.org/remotecontent?filepath=org/zeromq/jeromq/0.3.4/jeromq-0.3.4.jar
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
Would like to know which library (open source preferable) should I use to create a desktop app self installer. It should have the below features
Can create installer for both Windows and Mac
We should be able to bundle the JRE along with it
Thank you.
I would suggest you to look at IzPack which has powerful features and the advantages to be free.
not open source but installAnywhere is a good package.
Install4j is yet another important library to be mentioned here