The Java Runtime Environment contains a Java Virtual Machine along with necessary libraries and other files which enables Java Byte Code targeted applications to run.

learn more… | top users | synonyms

-2
votes
1answer
21 views

Exception in thread “AWT-EventQueue-2” java.lang.NullPointerException at sun.awt.SunToolkit.createImage(Unknown Source) [closed]

I am getting the following error message when trying to open one of our Web based Java/Applet Application on one of the user's PC. This issue hasn't happened before and all the other users are using ...
0
votes
1answer
9 views

How to use the JRE bundled in a JavaFX 2 self-contained application to start a runnable JAR on Mac OS X?

I created a JavaFX 2 self-contained application for Mac OS X. It works fine. Inside the application bundle (.app), there's a PlugIns directory and inside the PlugIns directory there's a directory ...
3
votes
1answer
36 views

system-wide memory limit for JVM's

I run an arch linux server with 8 Minecraft servers. This server has 64GB of RAM. Unfortunately, I'm running out of memory, causing linux to kill processes. If I tweak the -xmx settings for the ...
0
votes
0answers
19 views

Resolving security certificate issues between jre6 and jre7

Recently I ran into an issue while connecting to a secured website with the following exception javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building ...
0
votes
0answers
31 views

Eclipse crashing during use on Windows 7 with both 32-bit and 64-bit versions [closed]

Eclipse has become unusable for me. I can run it for about 3-5 minutes before it freezes for a few seconds and then crashes. I haven't noticed anything specific that induces the crash and I can run ...
0
votes
0answers
4 views

Not able to add entries for System JRE settings in windows 7

I have both jdk1.6 and jdk1.7 installed in windows 7. Added both the entries in Java Control Panel, JRE Settings , under User tab. And enabled 1.7 version. I want my browsers use version 1.7 for ...
1
vote
0answers
17 views

Force Struts1 to use the correct encoding for the resource file

Seems like the Struts1 uses InputStream to read i18n resource file(s) instead of a Reader. There is a struts.i18n.encoding property in the Struts2, but I could not find a similar settings for the ...
1
vote
0answers
32 views

How to deploy two projects with NetBeans that use the same deployed JRE?

I have two Java projects in Net Beans IDE 7.3. One is a JavaFX GUI admin console that I've built and deployed ("admin.java"); which contains the minimized JRE and installs via a single .exe file. ...
0
votes
1answer
15 views

Unsupported major.minor version 51.0 (unable to load class) - Tried typical solutions already

I've seen many solutions posted to this issue and have not been able to spot the issue with my problem. I have had this problem before and HAVE fixed it, however, it recently just came back and I ...
1
vote
3answers
245 views

Android Studio IDE with private jre/jdk? OSX

I'm running OSX 10.8 and was trying to run the Android Studio app bundle using a private jdk rather than one that is globally installed. EDIT: I don't have any java installation globally accessible. ...
0
votes
3answers
34 views

AccessControlException: access denied - FilePermission

I am using JRE7. I have signed the jar file using jarsigner. But still I get the exception java.security.AccessControlException: access denied ("java.io.FilePermission" "C:\Program ...
-4
votes
0answers
66 views

Java Compiler not working with JDK 1.5 [closed]

I'm trying to compile my code with JDK 1.5 but am getting the following error: Compiling Java Source Code (59 source file(s))... Error : cannot access ceer.common.ParentConstants ...
0
votes
1answer
22 views

Installed JDK 7 but it is not appearing in my JavaVirtualMachines folder

Anyone know what the problem is? I recently downloaded and installed JDK 7u21, but when I went to add the JRE to eclipse, I did not find it in the JavaVirtualMachines folder, all that was there was ...
0
votes
1answer
19 views

Sandbox/JRE limitations of CloudBees?

I'm going to start developing a Java web app that I believe I will be deploying to CloudBees, but am concerned about what JRE/sandbox restrictions may apply. For instance, with Google App Engine, ...
0
votes
0answers
61 views

Why same piece of (simple) Java code behaves very differently on different Android devices?

Why same piece of (simple) Java code behaves very differently on different Android devices? That simple piece of code is just the use of String.replace(CharSequence target, CharSequence replacement) ...
0
votes
0answers
29 views

Flash Builder 4.7 Ant Build Issues

I hope some one out there can help. I have a large project that uses Ant for release builds, that must be "Run in the same JRE as workspace" This has always been fine in fb4.5 and 4.6 but in 4.7 ...
2
votes
0answers
28 views

Java SIGSEV in libjvm.dylib with leiningen

Running clojure's lein tool releases a nightmarish error in the JRE. What is odd is I can run a clojure console fine (something like java -classpath ~/clojure-1.5.1/clojure-1.5.1.jar clojure.main) so ...
0
votes
1answer
23 views

SIGSEGV: Segmentation Fault in JCC Library Code

I'm using the JCC Python-Java bridge and for the most part it works. However, I'm getting the following error: JRE version: 7.0_17-b02 Java VM: Java HotSpot(TM) Client VM (23.7-b01 mixed mode ...
0
votes
1answer
32 views

Java application and jre management

I just released a new version of my java software. The new version needs jre7, while the old version did not. Now when my clients upgrade my software they get UnsupportedClassVersionError. The ...
0
votes
1answer
40 views

Why alternatives command is needed when installing Java on a Linux machine

The below command is need when installing Java on a Linux machine (saw the command in a tutorial). alternatives --install /usr/bin/java java /usr/java/jre1.7.0_01/bin/java 20000 man alternatives ...
0
votes
1answer
57 views

Find installation directory of JDK in windows

I have an application which dynamically loads jvm.dll, therefore I need to know where the DLL resides. Currently I am trying standard locations like C:\Program ...
0
votes
0answers
15 views

Failed to run Mac dmg

I have created native bundle package for Mac OS X using JavaFX deployment using Ant. As stated at http://docs.oracle.com/javafx/2/deployment/self-contained-packaging.htm#BABBCIHF Only a subset ...
0
votes
3answers
46 views

Setting up Eclipse with JRE Path

I have downloaded and extracted Eclipse. I have Eclipse in the following directory: C:\Applications\eclipse. When I try and run the executable, I get the following message: I currently have the ...
0
votes
1answer
23 views

org.antlr.v4.runtime.misc.TestRig hangs

I am trying to execute ANTLRv4 example from here http://www.antlr.org/wiki/display/ANTLR4/Getting+Started+with+ANTLR+v4. I have downloaded antlr-4.0-complete.jar and placed it into some directory. I ...
0
votes
1answer
21 views

Invoke a in-jar method at startup

I want to initialize my external jar library when the JVM starts without a method call. Is there A way I can get a "On JVM Startup" method invoked in an external jar?
0
votes
1answer
57 views

Forced JRE version in JNLP doesn't work on java 1.7

I am forcing the JRE version in my JNLP file with the following statement: <j2se version="1.5.0_12" href="http://java.sun.com/products/autodl/j2se" initial-heap-size="128m" ...
0
votes
1answer
27 views

Richfaces requirement jre version

Does richfaces application require a minimum jre version on the browser to run. Is it a must to have jre 1.5 and above version on the browser.
0
votes
1answer
42 views

JNA call works with 32-bit JRE but not with 64-bit JRE

I am trying to call system32's CreateProcessW from my JNA interface that I have created. The problem is that it works fine when I am running the software from a 32-bit JRE but when I move over to a ...
-2
votes
0answers
23 views

How to setup Java Web Application on CD [closed]

I am student of computer science, I have to submit my final project on CD. My project is based on Spring and Hibernate, Java 1.6, and PostGresql 9.0. It is running smoothly on my system. But, I have ...
1
vote
2answers
147 views

java.lang.unsatisfiedlinkerror can't load amd 64-bit .dll ia 32-bit

I'm getting the following error when I try to run my project on Eclipse. It worked fine on the computer I developed it on, but when I imported it to my laptop it didnt work. This question has ...
-4
votes
0answers
21 views

JRE is bombing on me…can't download maven

I am trying to use maven to compile some java code, but when I attempt to run it I get a JRE not found error. Why is JRE bombing?
-1
votes
0answers
21 views

Only sun jre can be used for Simlation [closed]

I have a mac with osx version 10.7.5. I was working on a project on a different machine before and now have migrated to this mac. When I run my java project, I get this error. Exception in thread ...
0
votes
0answers
21 views

Installing glassfish

I am trying to install Glassfish (2.1) on my computer. I installed jre6, but when I launch sges-2_1_1-windows.exe, it throws me an error saying that can't find Java (TM) 2 Runtime Environment. So, I ...
0
votes
0answers
59 views

Launch4J - bundling a JRE for Windows 7 64-bit machines

I've used Launch4J (along with Inno Setup Compiler) to create a desktop app. It works fine on Windows 7 32-bit, but on Windows 7 64-bit the JRE hangs. Presumably, this is because I bundled in a ...
0
votes
2answers
102 views

How to debug java applet

Im not very familiour with Java nor Java applets but I have to fix this issue. Ever since JRE 7 Update 21 the applet is throwing eceptions in all browsers. I need to debug the app, because the ...
1
vote
2answers
2k views

Java viewer not working after JRE 1.7.0.21 update

I am using a java viewer (applet) to view images in my .NET application. It was working until latest JRE update. Every client that updated java is throwing the following error (in all browsers): ...
0
votes
1answer
84 views

Java version with IE and Chrome

I have the following issue: I have two OS installed (XP and W7 32bit), because I have to apps, one works with jre-6u23, another one with jre-7u7, on these two OS I have installed two versions of Java ...
0
votes
2answers
88 views

Android: The type java.awt.Image cannot be resolved. It is indirectly referenced from required .class files

I am using some java projects in my Android project. I gave reference to those projects by adding them in Java Build Path and Project References. After doing this i can access classes of java projects ...
2
votes
0answers
364 views

Signed Java applet + JNI - JRE 7 21 Security Exception

My company uses an applet which needs JNI to access some PKI features. This is a very stable (+4 years) solution and is already in production in several clients. It's a signed (Thawte Certificate) ...
0
votes
4answers
52 views

Can I program in Java with someone else on the same project at the same time?

Is there anything such as an eclipse plugin that will allow code to be updated and used on a server, allowing for me to work on the same Java project as someone else at the same exact time? To explain ...
0
votes
2answers
21 views

Accessing a library (compiled using higher jdk) gives exception when accessed from lower JRE

I created a jar file (compiled it using jdk1.7). When I used this jar in a project(using JRE 1.6), I get the following exception- unsupported major.minor version 51.0 (I suppose 51.0 is meant for ...
1
vote
1answer
59 views

Install JRE when the same version is already present

I'm trying to install a jre-6u43-windows-i586 on my computer in static silent mode. This is a part of another installer. I run jre-6u43-windows-i586.exe /s STATIC=1 INSTALLDIR=D:\\java1 And it ...
0
votes
2answers
83 views

It seems as though you are running sqoop with a JRE - But JAVA_HOME set to JDK

I tried to set up sqoop (sqoop-1.4.3.bin__hadoop-1.0.0) on Ubuntu. I can run the basic sqoop help etc without problems. When I run the following I get an error: sqoop import --connect ...
-4
votes
1answer
38 views

Eclipse JRE Should Not Reach Here Error

Halp? # A fatal error has been detected by the Java Runtime Environment: # # Internal Error (classFileParser.cpp:3494), pid=2444, tid=140569071412992 # Error: ShouldNotReachHere() # # JRE ...
1
vote
0answers
66 views

JVM throws Exception

I am using RHEL 6.0 with JRE1.6.0_43 installed. It's installed properly and java plugin for browser also working fine. But I am facing the problem while running java_vm in /jre/bin directory. While ...
0
votes
2answers
82 views

Making Installer for Java application with MySQL database

I am looking for an installer for my Java Application that can bundle my own JRE and MySQL database, and I have heard of Install4J. Does Install4J have the feature of bundling MySQL Database 5.0 so ...
0
votes
0answers
67 views

jre6 or 7 based on ia64 architecture for ubuntu 12.10_64 bits

hello evry one i have bug in my java application that will send sms by using smslib library, the problem result that my cpu architecture is Intel ia64 but my jre installed with ubuntu 12.10 open_jre6 ...
2
votes
1answer
76 views

Creating a digest with digest.bat exits with JRE_HOME not configured

I am attempting to create a digest for some passwords. When running the following command C:\Program Files\apache-tomcat-7.0.34\bin> digest.bat -a SHA-256 somepassword i receive the following ...
2
votes
2answers
566 views

JRE Expiration Date

What is JRE Expiration Date set to 07/18/2013 in release notes of Java Runtime Environment version 7u21? JRE 7u21 release notes
0
votes
3answers
77 views

Struggling to update JRE dependencies within Maven and Eclipse

I'm trying to build a large Open Source project in Eclipse; it uses Maven so I've installed the various plugins (m2eclipse etc) but I'm a little unfamiliar with this setup. I can build and run the ...

1 2 3 4 5 16