Tagged Questions

90
votes
11answers
41k views

Why should I use the Sun 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
594 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
390 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
268 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
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?
8
votes
2answers
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
898 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
12k 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
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
2answers
216 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
1answer
432 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
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
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. ...
5
votes
5answers
553 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
3answers
261 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
238 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
1answer
73 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 ...
3
votes
5answers
338 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
147 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
237 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
61 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
65 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
2answers
121 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
53 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
80 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
56 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
79 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
277 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
784 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
97 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
561 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
403 views

Are Open JDK and JDK7 the same thing?

Are Open JDK and JDK7 the same thing?
2
votes
1answer
662 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
561 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
416 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
3answers
117 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
60 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
84 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
72 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 ...
1
vote
1answer
85 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
68 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
99 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
70 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
212 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
1answer
188 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
vote
1answer
246 views

Callbacks in JSR223 Javascript, difference between Oracle JRE 1.6 and OpenJDK 1.6 (as installed on, say, Debian)

Given the following, running with Oracle JRE 6 gives the output boo, but OpenJDK 6 gives an exception javax.script.ScriptException: sun.org.mozilla.javascript.EvaluatorException: The choice of Java ...
1
vote
0answers
114 views

StackOverflow when hide window with Java + Bsaf + OpenJDK6 [closed]

Possible Duplicate: A classic StackOverflow : Java Swing Hi! I'm programmed a GUI application with Java + Bsaf + Swing under Linux with Ubuntu and OpenJDK6. When I need hide a window or ...
1
vote
2answers
209 views

Need to move Java applications form Solaris 10 to AIX. Is there is Oracle or OpenJDK available for AIX platform?

We need to move many Java applications that is build with Sun JDK runs on sun JRE in Solaris 10 to AIX. We are concerned about the applicaion working the same on IBM J9 JRE. Is there any Oracle or ...

1 2