The Java Virtual Machine (JVM) enables a set of computer software programs and data structures to use a virtual machine model for the execution of other computer programs and scripts.

learn more… | top users | synonyms

1
vote
1answer
11 views

Glassfish Server JVM Tunning

I need to setup a Oracle Glassfish Server and after some research I came up with a configuration that I would like to propose. Any suggestions and/or corrections are very welcome. My Hardware/OS ...
6
votes
2answers
77 views

Monitor non-heap memory usage of a JVM

We usually deal with OutOfMemoryError problems because of heap or permgen size configuration problem. But all the JVM memory is not permgen or heap. As far as I understand, it can also be related to ...
16
votes
1answer
150 views

Is it possible to store secrets on the stack in java?

In Java the old way of storing a secret, such as a password, was to use char[] as you could overwrite its data when you were done with it. However this has since been shown to be insecure as the ...
1
vote
1answer
26 views

why jvm full gc need stop-the-world

I was asked this question,and I just answered "because jvm need to move object " later I googled and seams didn't find reasonable answer,anyone may help? thanks~
0
votes
1answer
13 views

Shared Constant Pool?

What does it mean when the Dalvik Virtual Machine got a "Shared Constant Pool" compared to the Java Virtual Machine? How is this a benefit and how does the Dalvik Machine achieve this?
0
votes
1answer
22 views

Make JVM/Solr not swap, using mlockall

I saw ElasticSearch provides the mlockall option which permits to keep the JVM heap inside physical memory instead of virtual memory (which may or not be physical), and to avoid swapping the heap. Is ...
0
votes
0answers
7 views

is there a limit for running multiple 32 bit JVMs?

I am working on a remote server with 64G of ram, I am using a platform which is using 32bit JVM and what I have to do is to create multiple JVMs (around 500). what happens is that after creating 190 ...
0
votes
2answers
24 views

Memory not beeing freed while indixing using solrj

We start indexing data from DB using solrj , we retrieve about 1 million record from the DB and then we make some process using java over the record . But we face some problem with the memory . When ...
0
votes
0answers
38 views

How to connect a C client to a remote JVM? [closed]

I am a little bit surprised to see that a case was simply closed by more Gurus and let the question unanswered. Nobody is perfect so not all the questions are well formulated. But it is still a ...
0
votes
0answers
39 views

Is there a way for a C or C++ application to connect to remote JVM via JMX? [closed]

I would like to know if is a way to connect a C or C++ application to a remote JVM via JMX? Best regards, SK
3
votes
1answer
86 views

scala specialization - using object instead of class causes slowdown?

I've done some benchmarks and have results that I don't know how to explain. The situation in a nutshell: I have 2 classes doing the same (computation heavy) thing with generic arrays, both of ...
-1
votes
1answer
18 views

Request : Analyse GC Offline using Tool

For some strong reason, I do NOT have access to our JVM based Web - App servers when running LIVE Production and only way is the task of Monitoring the Activity Offline Only. Hence I or ...
0
votes
2answers
27 views

PS Perm Gen && Perm Gen JVM PROPERTIES?

I need some information: I have 2 redhat 6.1 Linux server with TOMCAT 7.0.28 and JAVA jdk1.7.0_05 On 192.168.1.20(TOM04) i have 1 instance TOMCAT 7 with the MBEAN ...
1
vote
1answer
23 views

How do I make JVM use the IPv4 stack in isolated scope?

I have an application that runs on JVM/Tomcat and the machine(s) that it runs on all have IPv6 stack enabled. I'm trying to make a request to another machine that only supports IPv4 and the JVM will ...
0
votes
0answers
35 views

How to properly use Drip with java application?

I am not a java expert but need to execute a jar file within python and capture the output. I am currently using nailgun for that but stumbled upon Drip which is supposed to be better then nailgun ...
-1
votes
1answer
22 views

Tomcat 7, best memory setting , jrockit jvm 64 bit [closed]

i need help to configure/tune jvm setting for tomcat 7. I use jrockit : java.version 1.6.0_37 java.vm.info compiled mode java.vm.name Oracle JRockit(R) java.vm.specification.name Java ...
0
votes
1answer
69 views

Does memory size of variables in JAVA depend on Java Virtual Machine? [duplicate]

Do the variables have varying memory sizes depending upon the JVM?
1
vote
1answer
37 views

java process eats only 1 cpu core

i run my program using maven with the following command: mvn exec:java -Dexec.mainClass="some.path.to.my.class" on a Linux multi-cpu server. when i check the CPU usage, i see that java eats only 1 ...
0
votes
0answers
26 views

What's the size of Garbage Collector implementations in common VMs and what can be learned from it?

Looking at Java/OpenJDK, it seems that every “new” garbage collection implementation is roughly one magnitude larger than the preceding one. What are the sizes of Garbage Collector implementations in ...
0
votes
0answers
11 views

JVM Monitoring jar execution

I want to check the memory usage of a JAR that does some calculations. For this I want to use JVM monitor. When starting JVM monitor, I need to pick the JVM that is running my jar. But the problem is ...
0
votes
0answers
24 views

Problematic frame: # J java.nio.MappedByteBuffer.load()

Helo all... I'm getting an error when generating a PDG using BIRT Framework. The error happens in Java JVM. The log I'm getting: # # A fatal error has been detected by the Java Runtime ...
0
votes
0answers
47 views

OutOfMemoryException in apache

I am getting the OutOfMemoryException for nativeTLA process in one of our production application. The JVM is already running under maximum memory utilization for TLA. Here I have attached the ...
1
vote
0answers
35 views

JVM Perm Gen / System freeze after capturing a function which is generated in an interpreter run

I am using Scala dynamically embedded, and I thought I was smart to save re-interpretation of bits by capturing them in a Function0 of the host program. Approximately like this: object Code def ...
0
votes
0answers
22 views

Java Virtual Machin crash when use JPL into Java

How come when I run a java progam which utilized the library JPL, crashes the JVM? The command JPL.setNativeLibraryDir must point directly to the folder of Yap? I set the path already at JPL, in ...
2
votes
3answers
102 views

Is Java GC Deterministic

I am running multiple runs of the same scenario on a Java product with same JVM arguments. Every run gives a different GC behavior both in terms of its duration and its 'start time'. Is this expected? ...
0
votes
1answer
20 views

Installing JVM in a device with ARM11

I have a hardware device with following specifications RAM: ~200-250 MB Speed: ~800 - 1000 MHz Processor: cortex arm11 We have a C/C++ based SDK to develop applications for the device. Now we want ...
1
vote
0answers
27 views

Java gives a JVM error upon closing the frame

I'm using Ubuntu OS. Everything works properly. Once I try to close my LWJGL window, it closes also giving me this error. I have no idea what it means. # # A fatal error has been detected by the Java ...
2
votes
3answers
584 views

Android Studio run on Windows 7 64bit fails

I had successfully installed Android Studio on Windows 7 64bit , but when I started it , it's not work and show nothing . Then I appended the pause command to the end of the studio.bat . When I ...
0
votes
1answer
12 views

getting cannot create VM error from JVM

I have a C program which calls JNI. In this we create JVM. I am getting following error - Can not create VM This is not a regular error. Something this error goes away and starts coming again. ...
9
votes
2answers
84 views

Does increasing the number of available cores and RAM cause the JVM to perform more GCs?

I'm upgrading production hardware, and we're seeing far more young-gen GCing on the new set of kit compared to the old. The same program is running (identical binaries) on both machines. One obvious ...
5
votes
4answers
353 views

Android-Studio : Error: Could not create the Java Virtual Machine

I have just installed Android - studio today. First I have to install jdk7 for this IDE. After that only I was able to launch IDE. Now When I am trying to create new project, just getting error as ...
0
votes
1answer
36 views

ClassCastException when running on Oracle Database JVM

I have the following code: OracleDataSource ods = new OracleDataSource(); ods.setURL(thinConnectionString); OracleConnection conn = (OracleConnection) ods.getConnection(); ArrayDescriptor d = ...
0
votes
0answers
37 views

Error: Could not find or load main class com.sun.tools.javac.Main

Today I installed java in c:\Java in my system, after this set the path of the java in windows environment variable. I have windows 8. When I try to run the command javac in command prompt i will ...
0
votes
0answers
25 views

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform?

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform? I have a bunch of java bytecode instructions at hand and I want to know how to debug them efficiently. I wonder ...
2
votes
1answer
29 views

Get a listing of all currently loaded classes in a given JVM instance

It'd be handy to know which classes are currently loaded by a given JVM instance. Is there some way to get them through JVisualVM, for instance? Edit: I'm aware of the solution given @ Java - Get a ...
10
votes
1answer
72 views

What mechanism JVM use to block threads during stop-the-world pause

I heard this question on an interview and couldn't provide an answer. Later I searched thru the internet and still didn't find an answer. Can anybody tell me how JVM stops threads during ...
-1
votes
2answers
56 views

Java - how to make these methods mutlithreaded? [closed]

In terms of multi-threading I a am noob. I have written some programs which uses Java thread but nothing special. Current code is single-threaded. It reads data from file, generate random numbers ...
1
vote
1answer
57 views

Optimizing Solr 4 on EC2 debian instance(s)

My Solr 4 instance is slow and I don't know why. I am attempting to modify the configurations of JVM, Tomcat6 and Solr 4 in order to optimize performance, with queries per second as the key metric. ...
0
votes
1answer
35 views

How to set Heap Space for non executable JAR using JNI

Currently I am working on a mac application in which I am getting OutOfMemoryError frequently. Currently we are using non executable JAR file for our application so I cannot set heap size before ...
1
vote
2answers
31 views

Storing more than 85000 strings in ArrayList

I don't think this question is asked before, there is some clues(google search) that ArrayList can hold any size of data if JVM allows it to. The thing is I need to store some url links in arraylist ...
-3
votes
0answers
25 views

JVM not release the RAM memory [closed]

I need help with the next situation. I have settings in my JVM with the following parameters: -XX:+CMSIncrementalMode -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512m ...
1
vote
2answers
59 views

Change default .keystore location

How to make JVM search for .keystore file in user specified location instead of deafult location (user's home directory)?
1
vote
1answer
31 views

Java - Load additional class at JVM startup

I'd like to load an additional class at JVM startup. Specifically, the class should be loaded after all core libraries are loaded (so after rt.jar and lib/ext at least). The class isn't referenced ...
0
votes
1answer
50 views

Is there a way to create a direct ByteBuffer from a pointer solely in Java?

Or do I have to have a JNI helper function that calls env->NewDirectByteBuffer(buffer, size)?
2
votes
4answers
90 views

Generics in java - interoperating with legacy code

I am reading this tutorial from Oracle http://docs.oracle.com/javase/tutorial/extra/generics/legacy.html But I can't figure out what this line means As a result, the type safety and integrity of ...
0
votes
0answers
31 views

Creating an XML serialization file of Android classes in JVM

Given an Android project with classes being serialized with XStream, I want to create a serialization file for those classes outside the Android runtime. My idea is to get a copy of the target class ...
0
votes
2answers
37 views

why is java.nio.FileChannel transferTo() and transferFrom() faster??? Does it use DMA?

Why is java.nio.FileChannel transferTo() and transferFrom() faster than byte-by-byte transfer (stream based or using ByteBuffer) on some JVM/OS combinations??? Do these methods use direct memory ...
-2
votes
2answers
52 views

What tool should I use to decompile Java byte code to Java source code? [closed]

If you had to decompile java byte code into Java source code, what tool would you use?
0
votes
0answers
92 views

What programming language compiles to Java? [closed]

I do know there are a lot of JVM programming languages but what languages compile to pure Java? EDIT: The question was asked before: Is there a Coffeescript for Java? In other words X gets compiled ...
1
vote
4answers
56 views

What is the use of JVM if JIT is performing bytecode conversion to machine instructions

I am really struggling to understand the following thing Previously I know: When a Java program is compiled .class file will be generated. In that code is in the form of bytes. Then the JVM will ...

1 2 3 4 5 67