Tagged Questions
The openjdk tag has no wiki summary.
90
votes
11answers
42k 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 ...
19
votes
2answers
3k views
Is it possible to browse the source of OpenJDK online?
Is it possible to browse the source code of OpenJDK online, just like I can do with SourceForge's projects? I never used Mercury before, so I felt confused.
(Note: I don't want to download the ...
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
313 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
900 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
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
218 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
435 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
554 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
2answers
283 views
Can anyone interpret this C++ code (from OpenJDK6) into plain English?
Here's a code snippet from OpenJDK6's hotspot/src/share/vm/prims/unsafe.cpp (starting on line 1082):
// JSR166 ------------------------------------------------------------------
...
4
votes
1answer
153 views
Why does running javap on a compiled Scala class show weird entries in the constant pool?
When running javap -v on the compiled class resulting from this bit of Scala (version 2.8.1 final):
class Point(x : Int, y : Int)
I get the following output for the constant pool entries, along with ...
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
239 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
2answers
174 views
Workarounds for using ClojureScript with the OpenJDK?
I've been working on a project with Clojure and Noir and I'm enjoying the free hosting on Heroku's cedar stack. I've recently added some UI work in ClojureScript to find that it works locally but ...
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
68 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
122 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
58 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
281 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
3answers
2k views
Which JDK for Android Development on Ubuntu 10.04 64-bit?
Ubuntu 10.04 64-bit looks promising as a development environment for Android. I now have it up and running but I am stuck at the following decision point:
Synaptic Package Manager has
'default-jdk' ...
2
votes
4answers
2k views
Why does my Eclipse crash all the time?
Somehow stupid question, I have to admit - hope it won't cost me too many points.
To make it clear: I would also be happy if you can help me find the reason for the crashes. I wouldn't expect a ...
2
votes
2answers
786 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
2answers
348 views
bezier path widening
I have a bezier curve B with points S, C1, C2, E, and a positive number w representing width. Is there a way of quickly computing the control points of two bezier curves B1, B2 such that the stuff ...
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
2answers
509 views
Circle approximations using Bezier curves
I have 2 questions about bezier curves, and using them to approximate portions of circles.
Given the unit circle arc (1,0)->(cos(a),sin(a)) where 0 < a < pi/2, will it result
in a good ...
2
votes
5answers
562 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
404 views
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 ...
2
votes
3answers
503 views
Any IcedTea war stories?
Okay, my first serious question. :-D
I'm playing around with OpenJDK (7, not 6), and am about to start trying to build IcedTea on my Ubuntu system. I'm keen to hear from those who have played with ...
1
vote
3answers
126 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
61 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
86 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
74 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 ...