OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java programming language.
0
votes
0answers
16 views
Heap dump error on Centos 64bit and openjdk 7
I'm trying to generate a heap dump on my machine that is running a glassfish 3.1.2 using a open-jdk7 java.
I'm using the following command :
jmap -dump:live,format=b,file=dump.t -F 24935
But I ...
1
vote
2answers
42 views
Map.Entry next method?
I'm looking at the source code for JDK 7 - specifically WeakHashMap.java, where there is extensive use of this:
Entry<K,V> p = prev;
Entry<K,V> next = p.next;
but next isn't a method ...
1
vote
2answers
35 views
How to solve error “ Exception in thread ”AWT-EventQueue-0“ java.lang.NullPointerException:”?
I made MyApp for arm processor(ARMv7, 512 RAM, Debian Wheezy OS, Openjdk-7 installed).
when i run MyApp on this OS it gives error. My code and error are below.I search according that error but i can't ...
0
votes
0answers
26 views
Is java.text.BreakIterator thread-safe in openjdk?
I ran into some weird threading issues in a continuous integration build on travis-ci and got:
testThatDifferentArgumentsCanBeParsedConcurrently(se.softhouse.jargo.concurrency.ConcurrencyTest) ...
1
vote
0answers
35 views
Camel 2.10 and Spring JAXB complaining about Handling Interfaces
We recently upgraded the version of Open JDK 7 to version 1.7.0_u21 and have started to run into issues with Camel and JAXB that is included in that version. Versions starting with 1.7.0_u9 or below ...
1
vote
1answer
87 views
install tomcat7 service in ubuntu for all users [closed]
i used sudo apt-get install tomcat7 to install tomcat7 on ubuntu 13.04 server, the tomcat installed on my machine but there were few problems :
OpenJDK also installed on my machine and i don't want ...
0
votes
0answers
57 views
Compiling OpenJDK 7 without X11
I am trying to compile OpenJDK 7 on a headless RHEL server. I have no desire to install a bunch of miscellaneous X dependencies just to build it.
Is there any way to compile OpenJDK 7 without ...
1
vote
0answers
23 views
Any OpenJDK equivalent to JRockit's Weaving/AOP API?
I'm rather impressed by what I see of JRockit's built-in weaving/AOP support. Is there any similarly-easy-to-use support for AOP weaving on OpenJDK?
The code I am trying to instrument is often ...
0
votes
0answers
17 views
Does openjdk has tools.jar file?
I want to know do we have tools.jar in openjdk ? Is it licensed to use and distribute tools.jar ? I want to use tools.jar for signing a jar but tools.jar that comes with sun jdk cannot be used and ...
0
votes
5answers
67 views
Checking/getting JAVA_HOME Variable from Java
Inside a Java program, how can I read the JAVA_HOME variable (to be sure it is set the correct way)?
Similarly, how can I get the path of the bin folder? That is, the path usually set in Windows ...
0
votes
1answer
265 views
Can't install jdk on Fedora with yum nor with rpm
Help! I can't figure out how to install a jdk!
[/usr/lib/jvm]$ su -c "yum install java-1.7.0-openjdk-devel"
Loaded plugins: langpacks, presto, refresh-packagekit
No package java-1.7.0-openjdk-devel ...
0
votes
0answers
12 views
multiple openjdk versions installed — how to direct program to appropriate libraries
If I have openjdk 6, openjdk 7 and gcj installed, some programs that depend on a specific version will get offended and stop with an error if the system variables direct them to use the wrong java ...
5
votes
2answers
124 views
System.exit is not thread-safe on Linux?
I've just switched from Oracle JDK 1.6, to Open JDK 1.7.0_03, and I've hit a rather remarkable deadlock on exit:
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait(Native ...
4
votes
2answers
81 views
Boolean comparison of ints when RHS == Integer.MAX_VALUE, why does this loop terminate? [duplicate]
I'm trying to work out why this loop terminates...
@Test
public void test() {
int counter=0;
int from = 0;
int until = Integer.MAX_VALUE;
while(counter <= until) {
...
0
votes
0answers
116 views
cross compile openjdk for arm
I am using raspberry pi. I want to cross-compile openjdk to run it in raspberry pi. But I haven't found any strong tutorial which could lead me a way. I want to use openjdk with jamVM. I have found ...
0
votes
1answer
46 views
JasperReports failing on a linux machine
I have a dev PC with Win7 and Java HotSpot(TM) 64-Bit Server VM (build 23.1-b03, mixed mode) installed and a test server with Ubuntu and OpenJDK Runtime Environment (IcedTea6 1.12.3) ...
1
vote
1answer
109 views
JavaFX on Linux
What is the situation with JavaFX on Linux (x86 and x64)?
Can a JavaFX app be executed without problems on Linux OS?
I have found some questions from years 2011 and 2012, when apps were not stable!
3
votes
1answer
119 views
How to modify pom.xml so Maven 3.0.4 does not think I am running SDK 1.3
I know this question gets asked every so often, but the solutions out there seem to be for older versions of Maven.
The version I am running:
hduser@lightning252:~/spark-0.7.0-2/examples/ex2$ mvn ...
1
vote
0answers
55 views
How to speed up the VirMIDI (MIDI) ports detection and the sequencer creation by java on Linux
I installed the snd-virmidi kernel module in order to have Virtual MIDI ports in java. Thanks to these MIDI ports, java can connect non-java MIDI software synthesizer on Linux.
But, openjdk takes a ...
0
votes
1answer
30 views
HOW CAN I RUM TOMCAT as http:\\www.example.com, as it runs on http:\\www.example.com:8080
HOW CAN I RUM TOMCAT SITE as http:\www.example.com, as it runs on http:\www.example.com:8080
I have some files in PHP also
Some one guide me how i achieve this task.
Run JAVA Site on ...
0
votes
1answer
31 views
building java part of openjdk
I need to change some of JFC classes and thus wanted to do it with openjdk. I do not need to rebuild VM itself, just one of JFC classes.
Is it possible to build just JFC classes without building ...
0
votes
1answer
67 views
Find whether the JDK is openJDK or Oracle JDK
I am building a application where user can change the Java setting and can point to any jdk. However it must be Oracle JDK and shouldn't be a openJDK. Is there any way to check whether the JDK is open ...
8
votes
3answers
171 views
Why these generics don't compile in OpenJDK7, but do in OpenJDK6
class HasId<I> {}
class HasStringId extends HasId<String> {}
class Alert<T extends /*Some*/Object> extends HasStringId {}
class BaseController<M extends HasId<String>> {
...
0
votes
2answers
271 views
difference between Sun JDK and open JDK
I am running into errors such as the following:
Exception in thread "Thread-1" java.lang.IncompatibleClassChangeError:
Found class com.sun.image.codec.jpeg.JPEGImageEncoder, but interface
was ...
0
votes
0answers
29 views
java frames for Oracle Hotspot 1.6 at hs_err
there is a crash generated by a bad behavior of one application that uses lucene.
OS: RHEL 5.8 64bits
I see the hs_err generated by OpenJDK 1.6 update 22 64 bits, prints the current stack trace (see ...
1
vote
2answers
671 views
Java Runtime.getRuntime().exec(); not running program
the problem is that I am trying to make a game launcher and when you log in it goes and starts the actual game.
the code I have been told to do this is Runtime.getRuntime().exec();
i can run simple ...
3
votes
3answers
695 views
Ant failure: Exception in thread “main” java.lang.NoClassDefFoundError org/apache/tools/ant/launch/Launcher
I'm on Fedora 17. I am trying to compile a project with an ant build file which is not compatible with Java 7. So I decided to install OpenJDK 6. JDK 6 is unfortunately removed from yum repositories, ...
0
votes
0answers
199 views
the program javac can be found in the following packages ubuntu
typing
$ java -version
The program 'java' can be found in the following packages:
* gcj-4.4-jre-headless
* gcj-4.5-jre-headless
* openjdk-6-jre-headless
Try: sudo apt-get install <selected ...
0
votes
0answers
31 views
Building OpenJDK [closed]
I just finished cloning the OpenJDK source, and installed CYGWIN and executed:
get_source.sh
And finished getting the source, which IDE is best suited for building OpenJDK out of the box, I am ...
1
vote
1answer
319 views
what is the difference between java-1.7.0-openjdk-i386 and java-7-openjdk-i386
when i install netbeans it gives me the option to select the java environment, i have 3 options, the oracle java and these two (java-1.7.0-openjdk-i386 and java-7-openjdk-i386). what is the difference ...
0
votes
0answers
53 views
How can I compile OpenJDK on windows 7?
I have been following the OpenJDK build readme, and it seems that I am required to install: DirectX 9.0 SDK Update Summer 2004. Problem is, I can not find this download on the Microsoft site-- and I ...
1
vote
1answer
61 views
Add multiple samples to one instrument in Gervill SF2Soundbank
I am using Gervill to create a soundbank with instruments. I've recorded a sample for each tone pitch and now I'd like to put these samples into one instrument.
The documentation that I used so far ...
1
vote
1answer
108 views
System.exit appears to take a long time on OpenJDK 7 / FreeBSD
I'm having a problem with the performance of a Java subprocess running
under Java, running on FreeBSD 9.0-RELEASE i386.
System.exit(), for this program, takes about 2.6 seconds to run. And I
can't ...
2
votes
1answer
114 views
Diamond Operator Compiles under OpenJDK but not SunJDK 7
Hopefully this isn't a duplicate, I've searched and found some with related issues but not about the differences in Java.
private List<Stuff> apps = new ArrayList<Stuff>();
// compiles ...
1
vote
2answers
419 views
OpenProj JAVA_EXE error on Linux
I have installed openproj_1.4-2.deb on my ubuntu. and I'm getting the following err while openinig the same.
Your Java vendor is "Oracle Corporation". To run OpenProj, you need the Sun Java ...
1
vote
1answer
178 views
Java 8 Map and Reduce doesnt run
I was using Project Lambdas' .map() method to extract some data from a List object. Before, Jdk 1.8 contained Mapper interface but now, i see that it map method gets Function interface. My method ...
1
vote
2answers
88 views
OpenJDK 64 bit Java 1.6 : Doesn't support dot in CLI system properties?
The version of Java is printed below:
$ java -version
java version "1.6.0_24"
OpenJDK Runtime Environment (IcedTea6 1.11.5) (6b24-1.11.5-0ubuntu1~12.04.1)
OpenJDK 64-Bit Server VM (build 20.0-b12, ...
4
votes
1answer
44 views
Client VM not inlining?
I am on a Linux machine and use openjdk7. After finding my code was executed twice as fast when using the -server option, i dove deeper into what was happening inside the VM and found that the Server ...
0
votes
2answers
323 views
Unable to locate the Javac Compiler in:
I have installed OpenJDK as mentored below. But i still keep getting this error. I have set the right PATH in bash_profile.
Can someone help me out of this?
[ERROR] Failed to execute goal ...
0
votes
1answer
176 views
Subversion Edge Java WrapperManager error on Centos 6
I just installed a fresh CentOS 6.3 and now trying to run CollabNet Subversion Edge 3.2.2.
As of readme I extracted the sources with a user account (owner is now the user and not 7nnn like extracting ...
4
votes
1answer
184 views
OpenJDK only: Why does getResourceAsStream() not return MANIFEST.MF in executable JAR
I have a curious situation. My code does not load the MANIFEST.MF using getResourceAsStream() on OpenJDK 1.6. On Oracle JDK 1.6+ it works well. I came across this when I was accidently running my code ...
-1
votes
1answer
73 views
OpenJDK 7 AsynchronousServerSocketChannel only accepts localhost if bound to localhost/127.0.0.1 not external [closed]
> java -version
java version "1.7.0_09"
OpenJDK Runtime Environment (IcedTea7 2.3.3) (suse-3.16.1-x86_64)
OpenJDK 64-Bit Server VM (build 23.2-b09, mixed mode)
On openSUSE 12.2 (x86_64) and ...
0
votes
1answer
75 views
os not supported error while building hotspot
I am trying to build openjdk from source and I am using "HOTSPOT_RELEASE_VERSION=20.0-b12" on openjdk6 on ubuntu 12.04.
It prompts:
This OS is not supported:" `uname -a`; exit 1;<br>
This OS is ...
2
votes
0answers
112 views
Is OpenJDK used anywhere in the real world [closed]
Edit:
English is not my native language. Maybe I am not expressing myself clearly enough. How about this:
The BCL for Oracle's JRE clearly states that the license is not applicable for java programs ...
0
votes
0answers
83 views
Does IcedTea Web plugin ignore the deployment.properties?
I have been trying to get the IcedTea Web Plugin to show the Java Console, so I can check up on why my applet has been acting crazy.
I run the IcedTea Web Control Panel, then set it so it shows the ...
0
votes
1answer
132 views
Netbeans 7.2.1 asks for netx.jar and plugin.jar files when debugging
How can i fix this issue. It's not causing any problems yet
Have no file for /usr/lib/jvm/java-6-openjdk-i386/jre/lib/netx.jar
Have no file for /usr/lib/jvm/java-6-openjdk-i386/jre/lib/plugin.jar
...
-1
votes
1answer
643 views
Eclipse doesn't start : JVM terminated. Exit code=14
Tried searching for a fix couldn't find one!
I am running fedora 17 with :
Eclipse(juno) version
eclipse-platform.x86_64 1:4.2.1-2.fc17
A which java yields
/usr/bin/java
so ...
1
vote
1answer
87 views
Using encryption that would need Java Policy Files in openjre
if i want to use java and encryption with keys longer than 128bit i have to use the Java Policy Files. How to get those applications up and running with openjre? I get the same error i get using ...
0
votes
0answers
69 views
Eclipse - Could not find 'eclipse' executable. Ubuntu
I recently uninstalled openjdk 7 from my Ubuntu system as I installed Oracle JDK 7. But after uninstalling the openjdk 7, my eclipse doesn't start giving the error
KDEInit could not launch ...
0
votes
0answers
182 views
Neo4j Server issue: “Could not find the main class: org.neo4j.server.storemigration.PreStartupStoreUpgrader. Program will exit.”
I have used the Neo4j database successfully on my Ubuntu 12.04 before I moved on Mint 13. So, I installed the database (as described here) and tried to start neo4j-service:
sudo service neo4j-service ...
