Tagged Questions

JDK or Java Development Kit is a set of tools that Oracle, formerly Sun Microsystems, provides for developing Java applications.

learn more… | top users | synonyms

400
votes
12answers
114k views

Android SDK installation doesn't find JDK

I'm tying to install the Android SDK on my Windows 7 x64 System. jdk-6u23-windows-x64.exe is installed, but the Android SDK setup refuses to proceed, because it doesn't find the JDK installation. Is ...
127
votes
4answers
22k views

Who is preventing the release of Java 1.7? [closed]

I recently attended a talk by a Sun engineer, Charlie Hunt, regarding performance. The talk was interesting enough but one question was regarding the release date of 1.7. He said it's delayed as ...
63
votes
11answers
82k views

How install a specific jdk on Mac OS X?

I want to install a specific jdk (the latest for example). For this, I went to jdk download homepage: http://java.sun.com/javase/downloads/index.jsp I look for a mac version but i'm a bit surprise to ...
28
votes
16answers
96k views

Eclipse - no Java (JRE) / (JDK) … no virtual machine

I am trying to get Eclipse Galileo to re-run on my computer - i have run it before with no problems but now i keep getting this error: A java Runtime Environment (JRE) or Java Development kit ...
24
votes
3answers
18k views

JDK on OSX 10.7 Lion

I've instaled the Java for Developer package provided from Apple for 10.7 and java apps are running fine but eclipse cannot find the JDK root path and I cant either. Anybody any ideas?
24
votes
3answers
375 views

new File(“”) vs. new File(“.”): Feature or Bug?

new File("") and new File(".") yield the same canonical path, yet the former object is unsubable. Consider below code, and how both objects return the same canonical path. The documentation states the ...
22
votes
4answers
768 views

What is the state of Open Source Java?

What is the current state of Java's transition to an open source license (which Wikipedia lists as the GNU General Public License / Java Community Process)? Java being inclusive of many things, ...
17
votes
6answers
17k views

how to check the jdk version used to compile a .class file

I'm trying to debug a "Bad version number in .class file' error in java, is there a way for me to check which version the .class files are? I'm using Jre1.5.0_6, but my JDK is version 1.6.0_13, I'm ...
15
votes
14answers
11k views

m2eclipse: Eclipse is running in a JRE, but a JDK is required

I have a problem with m2eclipse (0.10.0) together with eclipse galileo (Build id: 20090920-1017). I always get the error message:"Eclipse is running in a JRE, but a JDK is required". I have tried ...
15
votes
4answers
3k views

How to split a string, but also keep the delimiters?

I have a multiline string which is delimited by a set of different delimiters: (Text1)(DelimiterA)(Text2)(DelimiterC)(Text3)(DelimiterB)(Text4) I can split this string into its parts, using ...
14
votes
3answers
139 views

Why it doesn't use the instance field directly, but assigns it to a local variable?

I'm reading the source of java.util.concurrent.ArrayBlockingQueue, and found some code I don't understand: private final ReentrantLock lock; public boolean offer(E e) { if (e == null) throw new ...
14
votes
7answers
7k views

How do I use JDK 7 on Mac OSX?

OK. This is a newbie question but I can't figure it out... I would like to use the WatchService API as mentioned in this link: ...
14
votes
6answers
18k views

where can I get the latest JRE / JDK as a zip file, I mean, no exe installer

You may call me a maniac, but I like to be sure that just by copying the contents of the java folder and setting the environment variables, everything will work fine. So I usually run the installer ...
12
votes
2answers
307 views

What are the differences between OpenJDK and JDK?

What are the differences between OpenJDK and JDK? Why would I use one rather than the other? Which works better with Netbeans?
12
votes
2answers
309 views

Smallest Java Runtime I can legally distribute?

My Java SWT desktop application is distributed with it's own Java runtime and I want to make the download size as small as possible. I'd like to remove all the classes I don't use from rt.jar, but ...
11
votes
5answers
253 views

compile jdk via ant

I want to compile jdk files in order to include debug infromation. I'd like to use ant, because it's included in my NetBeans environement, so i've done the following: unzipped /src.zip in a tmp ...
11
votes
5answers
194 views

Why is the Java library source code so strangely indented?

I often rely on the JDK source code to understand how I should implement an interface, and I often find some very strange indentation style at use. For instance, in DefaultCellEditor.java: public ...
11
votes
1answer
214 views

How does JDK 6 regexp compare with org.apache.regexp?

I'm interested in benchmarks and functionality? Is there are any reason to use Jakarta regexp?
11
votes
2answers
1k views

Is java.util.Observable used anywhere?

Was chatting to a colleague about the design of Javas libraries. I mentioned I'd always found it funny that the AWT/Swing classes called that essentially provide an Observable interface on a UI widget ...
10
votes
5answers
1k views

Calling Java varargs method with single null argument?

If I have a vararg Java method foo(Object ...arg) and I call foo(null, null), I have both arg[0] and arg[1] as nulls. But if I call foo(null), arg itself is null. Why is this happening?
10
votes
3answers
5k views

JDK tools.jar as maven dependency

I would like to put JDK tools.jar as compile dependency. I found some examples that indicates to use the systemPath property like the following: <dependency> ...
10
votes
7answers
7k views

Java API to find out the JDK version a class file is compiled for?

Are there any Java APIs to find out the JDK version a class file is compiled for? Of course there is the javap tool to find out the major version as mentioned in here. However I want to do it ...
9
votes
4answers
72 views

JDK, JRE an JARs compatibility

I know a bit about JDK and JRE source and binary compatibility (e.g. this and this), but not sure about the following situation: Consider I have an application which is compiled using JDK5 and runs ...
9
votes
4answers
2k views

Eclipse on Mac, getting “Specified VM install not found” error when trying to build

When I try and do an Ant build on my mac (Snow Leopard, Eclipse 3.6 - Helios) I get an error dialog that says "Problem Occured" 'Launching projectName build.xml' has encountered a problem. ...
9
votes
2answers
6k views

how can i set the jdk in intellij 9 on mac

I have a project on intellij and now i wanna run it on intellinj 9 on mac. when i run the project i get the error -> "the JDK is not specifiedfor module "XXXXX" specify the JDK in Configuration ...
9
votes
2answers
7k views

Where can I find old versions of the JDK and JRE?

To test compatibility, I need to find old versions of the JRE and JDK. Where can I find download links to these files?
9
votes
5answers
27k views

Java SE 6 vs. JRE 1.6 vs. JDK 1.6 - What do these mean?

I see many different Java terms floating around. I need to install the JDK 1.6. It was my understanding that Java 6 == Java 1.6. However, when I install Java SE 6, I get a JVM that reports as ...
9
votes
7answers
12k views

Differences between JDK and Java SDK

Is there any substantial difference between those two terms?. I understand that JDK stands for Java Development Kit that is a subset of SDK (Software Development Kit). But specifying Java SDK, it ...
8
votes
8answers
315 views

JDK interface for processing a generic parameter

Is there an interface from the JDK that looks something like this: public interface Callback<T> { public void process(T object); } The reason I want it is I need to implement a callback. ...
8
votes
3answers
4k views

Step through JDK source code in IntelliJ IDEA

How can I step through JDK source code in IntelliJ IDEA 7 and see the debug info? I can currently hit breakpoints and step through the code, but the debug info is not available. This means I can't ...
8
votes
11answers
3k views

Why are there many JRE implementations?

I was wondering..There is Sun's JRE, IBM's JRE, BEA's JRE, Oracle's JRE and some more less know JREs in the market. Why is there so many JRE implementations? Does the fact that Sun opened the Java ...
7
votes
5answers
133 views

what is the general java API compatibility rule

in detail: if we use public API for example, write java program for example , in JDK 1.4, if should run correctly in all version above it. in all update version in 1.4, in 1.5, 1.6 and 1.7? Also , ...
7
votes
2answers
236 views

Swing component and jdk version issue

I have a combo box. After selecting an item in combo box new JDialog opens. When i use JDK 1.6_06, I am able to click on buttons in JDialog properly. When i use JDK 1.6_24, then i need to click ...
7
votes
5answers
706 views

JDK, JRE, Java: Version Confusion!

Although I'm not a real Java developer (yet), I feel like I should know this by now, but I'm still very confused. My question has two parts: What is the difference between the so-called (as I've ...
7
votes
7answers
1k views

Is JDK “upward” or “backward” compatible?

Backward binary compatibility (or downward compatibility) - an ability of clients built with an old version of library API to run on a new one (wiki). Upward binary compatibility (or forward ...
7
votes
7answers
983 views

If I compiled a java file in the newest JDK, would an older JVM be able to run the .class files?

Does the bytecode depend on the version of the java it was created with? I hope the question is clear. Thanks.
7
votes
8answers
306 views

Do different JDK Updates produce different Java byte code?

A hypothetical scenario: I've got a project whose source compliance level is specified to 1.5. Now I compile this project with two different JDKs: At first with JDK 6 Update 7 and then with JDK 6 ...
7
votes
7answers
4k views

JDK/JRE/JVM/Java SDK | What do they all mean? Sometimes you can develop with JRE and sometimes you need JDK?

To tell the truth, I am quite confused on all these terms (JDK/JRE/Java SDK). I am not sure what each one does. When I first started doing simple java examples in eclipse, I am pretty sure I only had ...
7
votes
4answers
316 views

why 48 bit seed in util Random class?

Why this class uses 48 bit seed in its linear congruence formula? I would have expected 32 or 64... I know it takes higher order bits when asked for 32 bit values. But why only 16 more additional ...
6
votes
2answers
111 views

JDK 1.7 Throwable `addSuppressed()` method

Well, I get through related questions, I read the source code of JDK 1.7, but I don't find the answer. In this question I want to completely ignore fillInStackTrace. As of JDK 1.4 initCause() method ...
6
votes
1answer
99 views

Why does the JDK have both Math.random() and the Random class?

Is it just because of "large API syndrome" or generating random numbers that are more biased favored in some situations? If it was..I would think that controlling the bias-ness would be important.
6
votes
5answers
172 views

Towards the “true” definition of JAVA_HOME

I have mac os X, and java runs fine... However, I'm noticing that there is no clear definition of JAVA_HOME in many packages which require JAVA_HOME to be set : For example MAVEN : "JAVA_HOME, ...
6
votes
6answers
577 views

InteliJ Idea under Linux, No such file or directory on main class

I have a problem. I'm running InteliJ Idea under linux. I have created a project and a module inside it, and in that module I have a class (MyClass.class) and when I'm trying to run it from IDE, I get ...
6
votes
5answers
8k views

Failed to Load the JNI shared Library (JDK)

When I try opening Eclipse, a pop-up window states Failed to load the JNI shared library "C:/JDK/bin/client/jvm.dll". Following this, Eclipse force closes. Here's a few points I'd like to make: ...
6
votes
1answer
434 views

Sun JDK /Open JDK on Cygwin

Is any version of Sun JDK or Open JDK available to be installed on cygwin. Reason I am looking for this option is: There are many tools (e.g. jStack, jMap) which are available in unix versions of JDK ...
6
votes
4answers
344 views

Why are there Debug & Release builds for .Net, but not for Java?

In .Net, you can specifically compile your projects under "Debug" or "Release" settings, Release having more optimizations. I know that this is deemed unnecessary in Java, because the jitter does ...
6
votes
4answers
3k views

Java JDK Source Code?? Where to find it?

I like to see what a method in the Java API does. So I want the JDK Source Code. Before I re-installed Linux I had the scr.zip file with all the code in it. I just had to tell Eclipse this file and I ...
6
votes
8answers
11k views

How to get JDK 1.5 on Mac OSX

I've got to write some code for a legacy application that is still running JDK 1.5. Unfortunately, it looks like OSX doesn't actually have a 1.5 JDK installed, it just links to 1.6: ...
6
votes
5answers
5k views

What happened to JAXB's NamespacePrefixMapper in JDK6u18

I've been using com.sun.xml.bind.marshaller.NamespacePrefixMapper in my project, and i had no problem with it in JDK 6u17. Now I just updated to 6u18, and I saw that it has been replaced to ...
6
votes
7answers
693 views

How can I convert a JAR file to an EXE file?

I have created a JAR file and I want run it on a client. I have a couple of questions: How can I convert the JAR file to an EXE file? How can I encrypt the JAR file's contents? The jar file could be ...

1 2 3 4 5 10