Tagged Questions

93
votes
12answers
44k views

Why should I use the Oracle JDK over the OpenJDK, or vice-versa?

I recently purchased a new laptop and made my old one into a Linux box, running Ubuntu. I started to download the tools that I need, and I'm getting my Java development environment set up now. I have ...
28
votes
6answers
615 views

For which surprises do I have to prepare myself if I switch from Sun JDK to OpenJDK?

If I'd switch from Sun JDK to OpenJDK which surprises do I have to prepare myself for? What does frequently go wrong and how difficult can this be? Of course, each and every application can have its ...
17
votes
1answer
398 views

OpenJDK's rehashing mechanism

Found this code on http://www.docjar.com/html/api/java/util/HashMap.java.html after searching for a HashMap implementation. 264 static int hash(int h) { 265 // This function ...
15
votes
3answers
305 views

Where are the Java 7 updates for OpenJDK?

Oracle has released update 2 for Java 7, while it appears OpenJDK is still on the original build 147 which was released last summer. Will/are updates available for OpenJDK? There does seem to be an ...
12
votes
2answers
396 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?
9
votes
3answers
2k views

OpenJDK availability for Windows OS

I'm a newbie with OpenJDK and I'm just wondering if there were any OpenJDK version available to Windows OS. From the OpenJDL home page (http://openjdk.java.net/) it redirects to Oracle Sun JRE for ...
8
votes
2answers
975 views

Is Java SSL broken in OpenJDK on Ubuntu?

I am on a fresh install of Ubuntu having just installed OpenJDK: OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode) on Ubuntu 64 bit 10.10 Not sure if this is relevant, but I'm running it from ...
8
votes
8answers
13k views

What is the correct target for the JAVA_HOME envrionment variable for a Linux OpenJDK debian-based distribution?

Folks In Windows, JAVA_HOME must point to the JDK installation folder (so that JAVA_HOME/bin contains all executables and JAVA_HOME/libs contains all default jar libraries). If I download Sun's JDK ...
7
votes
1answer
102 views

OpenJDK - ready for production?

Wondering if anyone switched from Sun/Oracle JDK to OpenJDK? Is it production ready? Is the version 7 release any different from the Oracle version?
7
votes
1answer
504 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 ...
7
votes
5answers
762 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
2answers
223 views

Pure java implementation of the java.lang.Math class

I just downloaded the openjdk source and came to the realization that nearly all of the java.lang.Math class was implemented in native c/c++ code. I was wondering if there were any implementations ...
6
votes
4answers
3k views

Is sun java really necessary for using Android SDK on Ubuntu 10.10? I prefer OpenJDK

I would prefer to just use openjdk-6-jdk (version 6b20-1.9.1-1ubuntu3). But I'm just starting the Android SDK installation, so if sun java is really needed, I suppose now is the time to install it. ...
6
votes
3answers
1k views

Java Virtual Machines (JVM) and their performance comparison

I was wondering if there somebody knows if there are some benchmarks which compare the following jvms. sun jvm vs. openjdk jvm vs. rockit jvm vs. j9 jvm vs. apache harmony. Which one is has the best ...
5
votes
5answers
609 views

Java: How do I override a method of a class dynamically (class is eventually NOT in classpath)?

How do I call a method of a class dynamically + conditionally? (Class is eventually not in classpath) Let's say, I need the class NimbusLookAndFeel, but on some systems it's not available (i.e. ...
4
votes
1answer
89 views

javac error message does not display entire filepath

When using javac (or the ant task ), the error message does not include the entire filepath, it only includes the file name. For example, $ javac src/path/to/Filename.java Filename.java:1: package ...
4
votes
3answers
270 views

Do I need to open my source code if I use OpenJDK as JVM?

Greetings, With the current developments regarding Oracle announcing its intention to charge for a pro (or whatever you call it) version of JVM, and IBM announcing its intention to support OpenJDK, ...
3
votes
3answers
277 views

Java: strange deadlock

I've got a deadlock in my application, but there is no obvious locking instance in the stack trace. How is this possible? Is this a bug? jstack -l output Full thread dump OpenJDK 64-Bit Server VM ...
3
votes
5answers
357 views

Play!framework; Compile on server only instead on client

Is it possible to compile my Play!framework application only serverside? Since I connect a samba share to my client from the server hosting Play!, the paths differ between client and server ...
3
votes
3answers
156 views

How to make Java send multiple messages together?

Here's an extract of my code: OutputStream out = this.socket.getOutputStream(); out.write(fourBytes); out.write(someBytes); out.flush(); This gets sent in 2 packages, even though the first one is ...
3
votes
1answer
243 views

Java command lastModified() not working in Clojure

I am trying to get the last modified time from a file in Clojure, by executing a Java command. By using java.io.File.lastModified I am supposed to be able to get the UNIX-time, this does not work by ...
2
votes
2answers
76 views

about Java's classpath setting on Linux

everyone. I used openjdk-7 on arch linux. I started to learn Java recently, and encountered such a problem: I created a file at /home/hqwrong/Code/java/mew/Mouth.java: package mew; public class ...
2
votes
1answer
109 views

Is it possible to acquire and run JDK 7 in production?

Hi guys : I've seen some increased traffic about java 7 lately, however suns sight isn't clear on wether there do or do not exist java 7 versions that are running in production environments. Also, ...
2
votes
1answer
128 views

Is the OpenJDK JVM the same as the Oracle Java SE JVM?

I understand that the Oracle Java SE contains closed source extensions and tools that are not part of the OpenJDK however is the Oracle Java SE JVM identical to the OpenJDK JVM or does Oracle make ...
2
votes
2answers
157 views

Is there any issues what so ever with running Eclipse with OpenJDK under Linux?

The standard cure for fixing Java problems with Linux distributions like Ubuntu is to say "Use the Sun JDK instead of OpenJDK". For several reasons I'd like to just use the Java shipping with Ubuntu ...
2
votes
1answer
56 views

Why a method main.replay() is not getting executed in Java? But exactly the same code works in Fedora not in Archlinux

I have a simple player i am using third party libraries. Exactly the same code is working in my Fedora desktop. But when i am using exactly the same code in Archlinux it does not work to do ...
2
votes
1answer
103 views

OpenJDK breaks on processWorkerExit with no breakpoint

I'm running tomcat 7.0.21 on OpenJDK java version "1.6.0_20" OpenJDK Runtime Environment (IcedTea6 1.9.9) (6b20-1.9.9-0ubuntu1~10.10.2) OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode) in ...
2
votes
1answer
68 views

Where can I find the native implemetations of these functions?

I found these in open JDK (System.c file) static JNINativeMethod methods[] = { {"currentTimeMillis", "()J", (void *)&JVM_CurrentTimeMillis}, {"nanoTime", "()J", ...
2
votes
1answer
82 views

Is there a .java source file for arrays in the JDK? [closed]

Possible Duplicate: Source code for java array There is a Java source file for java.lang.Object in the OpenJDK, which surprised me a bit, but I thought it was pretty interesting. That got ...
2
votes
2answers
342 views

JVM architecture

I need to study the JVM architecture for one of my projects. Is there any good tutorials available for that. Can anyone please tell me about that. Thank You.
2
votes
2answers
830 views

javax.persistence in java-6-openjdk

I am trying to perform the build of a Spring Roo project (= Spring MVC + aspectj + hibernate) on my hudson integration server. The project is configured tu use <dependency> ...
2
votes
3answers
2k views

Java: JFrame.setLocationRelativeTo(null) not centering the window on Ubuntu 10.04 / gnome 2.30.2 with OpenJDK 1.6.0_18

Sample code: JFrame jFrame = new JFrame("Test"); jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); jFrame.setLocationRelativeTo(null); jFrame.setSize(600, 600); ...
2
votes
1answer
100 views

reason for methods not being compiled in Hotspot JVM

There are flags available that provide log information on methods that have been compiled. Where is the information on methods that didn't get compiled and why they didn't get compiled? Being able ...
2
votes
5answers
576 views

Accessing global variable in multithreaded Tomcat server

Edit: I've figured out the constructor for the singleton is getting called multiple times so it appears the classes are getting loaded more than once by separate class loaders. How can I make a global ...
2
votes
3answers
440 views

Are Open JDK and JDK7 the same thing?

Are Open JDK and JDK7 the same thing?
2
votes
1answer
678 views

“Simplified Varargs Method Invocation” already implemented in the current OpenJDK 7?

Is "Simplified Varargs Method Invocation" from http://mail.openjdk.java.net/pipermail/coin-dev/2009-March/000217.html already implemented in Java 7? Today I read in ...
2
votes
3answers
577 views

'Master Gain not supported' in OpenJDK

We have problems playing audio files using JavaZoom's libraries on OpenJDK in Linux, although it works perfectly on Sun JDK. Is there any workaround for this 'Master Gain not supported' exception? ...
2
votes
1answer
2k views

Is there an Ubuntu 9.04 OpenJDK equivalent of sun-java6-plugin?

I'm wondering if there exists an implementation of a firefox plugin for OpenJDK, or how one would get firefox to use OpenJDK's java for applets. I've searched endlessly, and I can't seem to find any ...
2
votes
1answer
421 views

what is the equivalent of the following jdk path in slicehost ubuntu?

I got to setup the following two variables: export LD_LIBRARY_PATH=/usr/java/jdk1.6.0/jre/lib/i386/:/usr/java/jdk1.6.0/jre/lib/i386/client/:./ export JAVA_HOME=/usr/java/jdk1.6.0/ Since, the above ...
1
vote
2answers
31 views

How to make my Boot.java class as main always on top where i have other processes causing troubles in Java?

I have this main.Boot which is actually a splash screen requires to be always on top of everything. But in my case what happening is it gets lost and main.main gets the first position which even do ...
1
vote
1answer
155 views

How to compile an OpenJDK 7 debug build on Ubuntu 11.10

Where can I find a simple set of instructions to compile an OpenJDK 7 debug build on Ubuntu 11.10 (Oneiric)? A debug build would make more JVM options available for troubleshooting purposes; for ...
1
vote
3answers
305 views

How can i install openjdk-7-jdk on lucid 10.04 LTS?

I'm currently using jdk 6 on a ubuntu 10.04 LTS server. Since Oracle will not allow jdk 6 in Ubuntu repos now, it looks like openjdk 7 is the best alternative ...
1
vote
3answers
95 views

import java.util.regex fails

I get an error when attempting to import the java.util.regex (specifically added the line to figure out that the error is in the import as I previously only had import java.util.*). ...
1
vote
2answers
131 views

Javac not installed with openjdk-6-jdk

I have been trying some different java compilers over the weekend and decided to stick with javac this morning. I then proceeded to clean up the mess that was caused by my testing and removed every ...
1
vote
1answer
121 views

Play framework doesnt start on os x mac

I'm playing with the play framework, which seems quite fine. When I tray to start a sample application On Mac 10.6.8 java version 1.6_29 I recive the following error: Ah! I tryed also whith the ...
1
vote
2answers
76 views

Where is the generic linux binary openjdk7.tar.gz?

Where can I get a vanilla tar.gz binary build download of openjdk7 for linux, similar to the oracle/sun vanilla jdk download?
1
vote
1answer
118 views

Having problems making AWS ElasticBeanstalk work with Sun JDK

In my application I need the tomcat to be powered by SunJDK. But the default AWS EBS AMI comes with OpenJDK. So I wanted to change this to Sun JDK. But this simplistic task is turning out to be ...
1
vote
1answer
80 views

InvalidKeyException: Cannot decrypt OpenJDK/JRE-encryted string with Sun JRE

I encrypted and stored some data to a db using the OpenJDK JRE and also successfully decrypted with OpenJDK when retrieving back from db. Today I replaced the OpenJDK JRE with Sun's JRE and now I get ...
1
vote
2answers
239 views

Options with JavaCompiler API

I have a program like this: it compiles files in memory and then executes them from memory. Therefore I needed a custom classloader with a file manager that stores files in memo://. Now I want to pass ...
1
vote
2answers
216 views

Classloader refusing access to AudioPlayer

I copied the text of my program to another computer, but there is some problem with importing sun.audio.AudioPlayer class. The compiler underlines the importing string and when I place mouse over it, ...

1 2