active questions tagged jvm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:31:05Z http://stackoverflow.com/feeds/tag/jvm http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804186/what-are-the-best-garbage-collection-settings-for-client-side 1 What are the best garbage collection settings for client side? Yishai 2009-11-26T15:03:16Z 2009-11-26T15:19:33Z <p>Recent JVM's have a lot of XX parameters for garbage collection (see <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp#PerformanceTuning" rel="nofollow">here</a> for example), but what are the options which can make a client side Swing application really perform better?</p> <p>I should note that one of the things that really annoys me on client side java applications is the large delay in stop-the-world garbage collection. In Intelli-J IDEA I have seen it go three minutes or more.</p> http://stackoverflow.com/questions/1768756/jamon-statistics-aggregation-across-multiple-jvms 0 Jamon statistics aggregation across multiple JVMs Keshav 2009-11-20T06:46:44Z 2009-11-26T10:30:05Z <p>Hello,</p> <p>I have a tomcat server running a webapp. Apart from this there are two other JVMs that run batch processing tasks. Jamon is a really cool way to monitor performance, hits etc., and can be viewed on the web using Jamonadmin.jsp (supplied with jamon war file). But I want to aggregate the Jamon statistics from the other two JVMs and display on the tomcat server VM.</p> <p>I was thinking of a port on each of the two VMs that respond with serialized Jamon objects when asked from tomcat.. </p> <p>Is there any such feature already exisiting in Jamon API? or any recommendations to achieve this?</p> <p>Thanks,<br> -Keshav</p> http://stackoverflow.com/questions/1735326/running-a-fastest-algorithm-competition 1 Running a fastest-algorithm competition Chip Uni 2009-11-14T19:29:52Z 2009-11-26T08:06:33Z <p>I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.</p> <ul> <li>One fair way to measure speed of an algorithm is to use a neutral virtual machine, like Java's JVM. Is there an easy way to know the total number of JVM instructions executed? (If the entry uses multiple threads, then the total number of JVM instructions would be summed across all threads.)</li> </ul> <p>For example, the code</p> <pre><code>public class simple { public static int main(String argc[]) { int i; i = 3; while (i &gt; 0) { i--; } return 0; } } </code></pre> <p>generates the JVM code </p> <pre><code>0: iconst_3 1: istore_1 2: iload_1 3: ifle 12 6: iinc 1, -1 9: goto 2 12: iconst_0 13: ireturn </code></pre> <p>and it takes (if I've counted correctly) 18 JVM instructions to run. </p> <ul> <li><p>I would like people to be able to run their entries at home, and to see what the judges would see. Obviously, if I give the input to the program, the fastest solution would be to spit out the memoized, pre-computed answers. Is there any way to objectively both let people run programs at home and not see memoized answers?</p></li> <li><p>What other issues prevent an informal "fastest code competition" from happening?</p></li> </ul> <p>Thanks!</p> http://stackoverflow.com/questions/1793979/registering-multiple-keystores-in-jvm 1 Registering multiple keystores in JVM Raz 2009-11-25T00:46:00Z 2009-11-26T03:20:14Z <p>Hello,</p> <p>I have two applications running in the same java virtual machine, and both use different keystores and truststores.</p> <p>A viable option would be use a single keystore and import all the other ones into the shared keystore (e.g. keytool -import), but it would really help my requirements if I could use separate keystores for separate applications running in the same jvm.</p> <p>I could set the keystore and truststores to be used as jvm parameters or system properties as follows:</p> <pre><code>java -Djavax.net.ssl.keyStore=serverKeys -Djavax.net.ssl.keyStorePassword=password -Djavax.net.ssl.trustStore=serverTrust -Djavax.net.ssl.trustStorePassword=password SSLApplication </code></pre> <p>or</p> <pre><code>System.setProperty("javax.net.ssl.keyStore","serverKeys") </code></pre> <p>But the problem with this approach is that it specifies the keystore/truststore to be used at a JVM level, thus all applications running in the same JVM gets the same keystore/truststore.</p> <p>I have also tried creating a custom SSLContext and setting it as the default, but it also sets the context for all applications running in the same JVM.</p> <pre><code>SSLContext context = SSLContext.getInstance("SSL"); context.init(kms, tms, null); SSLContext.setDefault(context); </code></pre> <p>I want to be able use different keystores/truststores without modifying individual application codes. </p> <p><strong>A solution that can <em>dynamically register multiple key stores</em> in addition to the default keystore/certs in jre into jvm would be great.</strong></p> <pre><code> The solution will work in this way: - When JVM boots, it loads all the default certs/keystores from jre/certs folder (default java behaviour when no keystores specified). - When App 1 loads it registers its keystores, - then when App 2 loads it registers its keystores... </code></pre> <p>Please let me know your ideas or solutions. Thanks in advance!</p> http://stackoverflow.com/questions/1800477/help-running-a-jar-from-within-a-java-program-using-jarclassloader 1 Help running a jar from within a java program using JarClassLoader Heinrich Schmetterling 2009-11-25T22:48:10Z 2009-11-25T22:53:07Z <p>I'm trying to run a jar within a java program and capture its stdout. <strong>I want to do this to avoid the JVM startup cost every time the jar is run.</strong> What is the simplest way to do this? </p> <p>I started by modifying Java's JarClassLoader and adding a SecurityManager subclass to that to prevent system exits. The JarClassLoader is a subclass of URLClassLoader, and looks up the main class in the jar and then executes the main function there. But now I'm getting InvocationTargetExceptions when I try to execute that function even though I'm passing the correct arguments. Anyone with an idea of where to go from here?</p> <p>Is there a simpler way to do this?</p> http://stackoverflow.com/questions/1785505/jvm-heap-limit-on-suse 1 jvm heap limit on SUSE michelangelo 2009-11-23T19:48:28Z 2009-11-25T22:03:02Z <p>hello, I hope you can help me on the problem we have with SUSE and JDK 1.4.x: my suse is PAE enabled with 15Gb RAM. unfotunately jvm cannot allocate more than 1900Mb for heap size. So java -Xmx2048m gives me an error. it seems you had the same problem, did you solve it? I hope so :)</p> <p>thanks Michelangelo</p> http://stackoverflow.com/questions/1791115/jvm-and-clr-allocation-optimization 1 JVM and CLR allocation optimization rep_movsd 2009-11-24T16:15:53Z 2009-11-24T16:54:09Z <p>Do the JVM and .NET VM allocate objects on the stack when it is obvious to the runtime that an objects lifetime is limited to a certain scope?</p> http://stackoverflow.com/questions/1785743/why-do-some-jvm-linux-kernels-show-each-java-thread-as-a-process-and-other-not 0 Why do some JVM/Linux Kernels show each java thread as a process and other not? How can I determine beforehand what the behavior will be? Jherico 2009-11-23T20:31:50Z 2009-11-24T07:34:50Z <p>I have two machines, one running 2.4.18 and one running 2.4.20. Both run Java 1.5 build 13. On one machine (2.4.18), each thread shows up as a separate process in the <code>ps</code> output, and on the other the whole JVM shows up as one process. What is the distinguishing factor and can I control it?</p> http://stackoverflow.com/questions/1049983/jvm-xxstringcache-argument 4 JVM -XX:+StringCache argument? Gandalf 2009-06-26T16:14:20Z 2009-11-22T10:38:28Z <p>I was recently reading about all the JVM arguments available in JRE 6 [<a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">Java VM Options</a>] and saw this :</p> <blockquote> <p>-XX:+StringCache : Enables caching of commonly allocated strings.</p> </blockquote> <p>Now I was always under the impression that Java kept a pool of interned (correct word?) Strings and when doing something like String concatenation with literals it was not creating new objects, but pulling them from this pool. Has anyone ever used this argument, or can explain why it would be needed?</p> <p><strong>EDIT:</strong> I attempted to run a benchmark, to see if this argument had any effect and was unable to get the Sun JVM to recognize it. This was with: </p> <pre><code>java version "1.6.0_11" Java(TM) SE Runtime Environment (build 1.6.0_11-b03) Java HotSpot(TM) Client VM (build 11.0-b16, mixed mode, sharing) </code></pre> <p>So I'm not sure if this argument works at all.</p> http://stackoverflow.com/questions/1767264/java-hotspot-error 0 Java HotSpot error Aaron 2009-11-19T23:14:53Z 2009-11-21T12:02:37Z <p>Curious if anyone could help out in regards to a Java HotSpot dump...saw some reference to head over to the Sun Forums, figured I would try here first...below is the dump...</p> <pre><code># # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d8c8f23, pid=2836, tid=5980 # # Java VM: Java HotSpot(TM) Client VM (11.2-b01 mixed mode, sharing windows-x86) # Problematic frame: # V [jvm.dll+0xc8f23] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x06c4d800): JavaThread "Thread-3365400" [_thread_in_vm, id=5980, stack(0x05560000,0x055b0000)] siginfo: ExceptionCode=0xc0000005, writing address 0x055ad9d0 Registers: EAX=0x00002000, EBX=0x055afad4, ECX=0x055ad9d0, EDX=0x0556605c ESP=0x055af9d8, EBP=0x055afb88, ESI=0x00000002, EDI=0x055af9d0 EIP=0x6d8c8f23, EFLAGS=0x00010202 Top of Stack: (sp=0x055af9d8) 0x055af9d8: 06b54330 06c4d800 6d8c92fc 281db870 0x055af9e8: 055afa78 06c4d800 06b54320 06b54320 0x055af9f8: 0000000a 055afb90 06b54328 06b5432c 0x055afa08: 06b54330 00000005 06c4d800 06b54324 0x055afa18: 06c4d800 00000000 281db870 00000000 0x055afa28: 06b54330 00000000 00000000 00000000 0x055afa38: 6d951381 055afb88 055afa00 055afad4 0x055afa48: 00a190b0 06b54320 06c4d800 281db870 Instructions: (pc=0x6d8c8f23) 0x6d8c8f13: 3b c6 7c 1c e8 74 51 08 00 0f af c6 8b cf 2b c8 0x6d8c8f23: c7 01 00 00 00 00 a1 a4 18 a1 6d 46 3b f0 7e e4 Stack: [0x05560000,0x055b0000], sp=0x055af9d8, free space=318k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [jvm.dll+0xc8f23] --------------- P R O C E S S --------------- Java Threads: ( =&gt; current thread ) 0x06c45c00 JavaThread "Thread-3365408" [_thread_blocked, id=7184, stack(0x05510000,0x05560000)] 0x03d7cc00 JavaThread "Thread-3365407" [_thread_blocked, id=8176, stack(0x05420000,0x05470000)] =&gt;0x06c4d800 JavaThread "Thread-3365400" [_thread_in_vm, id=5980, stack(0x05560000,0x055b0000)] 0x03ed1400 JavaThread "SocketListener0-16" [_thread_blocked, id=6596, stack(0x05290000,0x052e0000)] 0x06c96000 JavaThread "SocketListener0-6" [_thread_in_native, id=4880, stack(0x054c0000,0x05510000)] 0x06c45000 JavaThread "SocketListener0-3" [_thread_blocked, id=6264, stack(0x05000000,0x05050000)] 0x06c4a400 JavaThread "SocketListener0-22" [_thread_in_native, id=6612, stack(0x05380000,0x053d0000)] 0x06da4400 JavaThread "pool-32-thread-1" [_thread_blocked, id=5440, stack(0x053d0000,0x05420000)] 0x06c72800 JavaThread "pool-30-thread-1" [_thread_blocked, id=2156, stack(0x05050000,0x050a0000)] 0x03f9cc00 JavaThread "pool-31-thread-2" [_thread_blocked, id=2972, stack(0x05330000,0x05380000)] 0x0370ac00 JavaThread "pool-31-thread-1" [_thread_blocked, id=5272, stack(0x052e0000,0x05330000)] 0x06d32c00 JavaThread "pool-33-thread-1" [_thread_blocked, id=3244, stack(0x07e50000,0x07ea0000)] 0x03ee8000 JavaThread "pool-29-thread-5" [_thread_blocked, id=5572, stack(0x05230000,0x05280000)] 0x03fbac00 JavaThread "pool-29-thread-4" [_thread_blocked, id=3992, stack(0x051e0000,0x05230000)] 0x06c56800 JavaThread "pool-29-thread-3" [_thread_blocked, id=5256, stack(0x05190000,0x051e0000)] 0x06c91400 JavaThread "pool-29-thread-2" [_thread_blocked, id=4328, stack(0x05140000,0x05190000)] 0x03b39800 JavaThread "pool-34-thread-1" [_thread_blocked, id=4424, stack(0x050f0000,0x05140000)] 0x03d43800 JavaThread "Thread-3043484" [_thread_in_native, id=1660, stack(0x04fb0000,0x05000000)] 0x06bad800 JavaThread "Timer-92" [_thread_blocked, id=5012, stack(0x04ba0000,0x04bf0000)] 0x03740400 JavaThread "pool-29-thread-1" [_thread_blocked, id=5176, stack(0x04d80000,0x04dd0000)] 0x06b3d400 JavaThread "0APRSeventListenThr" daemon [_thread_in_native, id=4572, stack(0x050a0000,0x050f0000)] 0x06c43400 JavaThread "Timer-90" [_thread_blocked, id=208, stack(0x04f60000,0x04fb0000)] 0x03f3a800 JavaThread "Timer-89" [_thread_blocked, id=1132, stack(0x04f10000,0x04f60000)] 0x06c97000 JavaThread "pool-3-thread-32" [_thread_blocked, id=5388, stack(0x04ec0000,0x04f10000)] 0x0373f000 JavaThread "Timer-88" [_thread_blocked, id=5768, stack(0x04e70000,0x04ec0000)] 0x06b6f800 JavaThread "pool-3-thread-31" [_thread_blocked, id=6140, stack(0x04e20000,0x04e70000)] 0x03f4dc00 JavaThread "Timer-87" [_thread_blocked, id=4436, stack(0x04dd0000,0x04e20000)] 0x03db8c00 JavaThread "Timer-85" [_thread_blocked, id=4820, stack(0x04d30000,0x04d80000)] 0x06b4ec00 JavaThread "Timer-84" [_thread_blocked, id=5356, stack(0x04ce0000,0x04d30000)] 0x03704c00 JavaThread "Timer-83" [_thread_blocked, id=3748, stack(0x04c90000,0x04ce0000)] 0x03e7f000 JavaThread "pool-3-thread-30" [_thread_blocked, id=316, stack(0x04c40000,0x04c90000)] 0x06b77c00 JavaThread "Timer-82" [_thread_blocked, id=1684, stack(0x04bf0000,0x04c40000)] 0x03e13800 JavaThread "pool-3-thread-29" [_thread_blocked, id=5224, stack(0x04b50000,0x04ba0000)] 0x038c0000 JavaThread "Timer-81" [_thread_blocked, id=4312, stack(0x04b00000,0x04b50000)] 0x06cc7400 JavaThread "pool-3-thread-28" [_thread_blocked, id=2192, stack(0x04ab0000,0x04b00000)] 0x06c21800 JavaThread "Timer-80" [_thread_blocked, id=1860, stack(0x04060000,0x040b0000)] 0x03f33800 JavaThread "Timer-79" [_thread_blocked, id=3024, stack(0x04010000,0x04060000)] 0x036f8800 JavaThread "Timer-78" [_thread_blocked, id=3088, stack(0x032b0000,0x03300000)] 0x03f83000 JavaThread "SocketListener0-19" [_thread_in_native, id=2572, stack(0x05470000,0x054c0000)] 0x02bbf800 JavaThread "0APRSeventListenThr" daemon [_thread_in_native, id=5360, stack(0x04a60000,0x04ab0000)] 0x033a8400 JavaThread "pool-3-thread-7" [_thread_blocked, id=2140, stack(0x04a10000,0x04a60000)] 0x033a7c00 JavaThread "Timer-16" [_thread_blocked, id=3956, stack(0x049c0000,0x04a10000)] 0x02c1b400 JavaThread "pool-3-thread-6" [_thread_blocked, id=5396, stack(0x04970000,0x049c0000)] 0x0340d800 JavaThread "Timer-15" [_thread_blocked, id=5660, stack(0x04920000,0x04970000)] 0x03a84000 JavaThread "pool-3-thread-5" [_thread_blocked, id=4164, stack(0x048d0000,0x04920000)] 0x03a85400 JavaThread "Timer-14" [_thread_blocked, id=4836, stack(0x04880000,0x048d0000)] 0x03b03000 JavaThread "pool-3-thread-4" [_thread_blocked, id=4480, stack(0x04830000,0x04880000)] 0x03b06c00 JavaThread "Timer-13" [_thread_blocked, id=4264, stack(0x047e0000,0x04830000)] 0x03a83000 JavaThread "pool-4-thread-1" [_thread_blocked, id=4316, stack(0x04790000,0x047e0000)] 0x03202800 JavaThread "Timer-12" [_thread_blocked, id=4924, stack(0x04740000,0x04790000)] 0x03204000 JavaThread "Timer-11" [_thread_blocked, id=1768, stack(0x046f0000,0x04740000)] 0x03afa000 JavaThread "pool-3-thread-3" [_thread_blocked, id=4036, stack(0x046a0000,0x046f0000)] 0x03af5800 JavaThread "Timer-10" [_thread_blocked, id=2860, stack(0x04650000,0x046a0000)] 0x03af3c00 JavaThread "pool-3-thread-2" [_thread_blocked, id=1944, stack(0x04600000,0x04650000)] 0x03af2c00 JavaThread "Timer-9" [_thread_blocked, id=2404, stack(0x045b0000,0x04600000)] 0x03cbcc00 JavaThread "Timer-8" [_thread_blocked, id=2348, stack(0x04560000,0x045b0000)] 0x03cba400 JavaThread "pool-3-thread-1" [_thread_blocked, id=1348, stack(0x04510000,0x04560000)] 0x03c9b800 JavaThread "Timer-7" [_thread_blocked, id=1972, stack(0x044c0000,0x04510000)] 0x03c9a400 JavaThread "Timer-6" [_thread_blocked, id=4296, stack(0x04470000,0x044c0000)] 0x03cab800 JavaThread "EventAdmin Async Event Dispatcher Thread" daemon [_thread_blocked, id=4276, stack(0x04420000,0x04470000)] 0x03ca8800 JavaThread "Thread-12" [_thread_in_native, id=4336, stack(0x043d0000,0x04420000)] 0x03912000 JavaThread "pool-2-thread-1" [_thread_blocked, id=4452, stack(0x04380000,0x043d0000)] 0x03432000 JavaThread "pool-1-thread-1" [_thread_blocked, id=4612, stack(0x04330000,0x04380000)] 0x03099c00 JavaThread "Timer-5" daemon [_thread_blocked, id=4432, stack(0x042e0000,0x04330000)] 0x03258c00 JavaThread "Timer-4" daemon [_thread_blocked, id=4144, stack(0x04290000,0x042e0000)] 0x03bc5400 JavaThread "Timer-3" daemon [_thread_blocked, id=5984, stack(0x04240000,0x04290000)] 0x03c72400 JavaThread "Timer-2" daemon [_thread_blocked, id=4216, stack(0x041f0000,0x04240000)] 0x03bc2400 JavaThread "Thread-7" daemon [_thread_blocked, id=5780, stack(0x041a0000,0x041f0000)] 0x03ad8c00 JavaThread "Timer-1" daemon [_thread_blocked, id=3536, stack(0x04150000,0x041a0000)] 0x03aedc00 JavaThread "Timer-0" daemon [_thread_blocked, id=3760, stack(0x04100000,0x04150000)] 0x0391f000 JavaThread "Worker-0" [_thread_blocked, id=3772, stack(0x040b0000,0x04100000)] 0x038e6400 JavaThread "Acceptor ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=9090]" [_thread_blocked, id=3116, stack(0x03fc0000,0x04010000)] 0x038c2800 JavaThread "SessionScavenger" daemon [_thread_blocked, id=3696, stack(0x03760000,0x037b0000)] 0x03145000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=3480, stack(0x03300000,0x03350000)] 0x030dd000 JavaThread "ConsoleSocketGetter" daemon [_thread_in_native, id=568, stack(0x03260000,0x032b0000)] 0x03104400 JavaThread "OSGi Console" [_thread_blocked, id=1252, stack(0x02fd0000,0x03020000)] 0x03104000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=3152, stack(0x02f80000,0x02fd0000)] 0x02b80c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1468, stack(0x02e30000,0x02e80000)] 0x02b7b800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5016, stack(0x02de0000,0x02e30000)] 0x02b7a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=6052, stack(0x02d90000,0x02de0000)] 0x02b78c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5332, stack(0x02d40000,0x02d90000)] 0x02b70800 JavaThread "Finalizer" daemon [_thread_blocked, id=980, stack(0x02cf0000,0x02d40000)] 0x02b6f400 JavaThread "Reference Handler" daemon [_thread_blocked, id=1364, stack(0x02ca0000,0x02cf0000)] 0x003a6c00 JavaThread "main" [_thread_blocked, id=3712, stack(0x00990000,0x009e0000)] Other Threads: 0x02b6d800 VMThread [stack: 0x02c50000,0x02ca0000] [id=1864] 0x02b83c00 WatcherThread [stack: 0x02e80000,0x02ed0000] [id=2712] VM state:synchronizing (normal execution) VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) [0x003a5968] UNKNOWN - owner thread: 0x02b6d800 [0x003a5dc8] UNKNOWN - owner thread: 0x06c45000 Heap def new generation total 4544K, used 4177K [0x22990000, 0x22e70000, 0x22e70000) eden space 4096K, 100% used [0x22990000, 0x22d90000, 0x22d90000) from space 448K, 18% used [0x22e00000, 0x22e14460, 0x22e70000) to space 448K, 0% used [0x22d90000, 0x22d90000, 0x22e00000) tenured generation total 60544K, used 53242K [0x22e70000, 0x26990000, 0x26990000) the space 60544K, 87% used [0x22e70000, 0x2626e8a0, 0x2626ea00, 0x26990000) compacting perm gen total 30720K, used 30550K [0x26990000, 0x28790000, 0x2a990000) the space 30720K, 99% used [0x26990000, 0x28765898, 0x28765a00, 0x28790000) ro space 8192K, 63% used [0x2a990000, 0x2aea7e48, 0x2aea8000, 0x2b190000) rw space 12288K, 53% used [0x2b190000, 0x2b7fcb38, 0x2b7fcc00, 0x2bd90000) Dynamic libraries: 0x00400000 - 0x00424000 C:\WINDOWS\system32\java.exe 0x7c800000 - 0x7c8c2000 C:\WINDOWS\system32\ntdll.dll 0x77e40000 - 0x77f42000 C:\WINDOWS\system32\kernel32.dll 0x7d1e0000 - 0x7d27c000 C:\WINDOWS\system32\ADVAPI32.dll 0x77c50000 - 0x77cef000 C:\WINDOWS\system32\RPCRT4.dll 0x76f50000 - 0x76f63000 C:\WINDOWS\system32\Secur32.dll 0x7c340000 - 0x7c396000 C:\Program Files\Java\jre6\bin\msvcr71.dll 0x6d800000 - 0x6da56000 C:\Program Files\Java\jre6\bin\client\jvm.dll 0x77380000 - 0x77411000 C:\WINDOWS\system32\USER32.dll 0x77c00000 - 0x77c49000 C:\WINDOWS\system32\GDI32.dll 0x76aa0000 - 0x76acd000 C:\WINDOWS\system32\WINMM.dll 0x76290000 - 0x762ad000 C:\WINDOWS\system32\IMM32.DLL 0x71bc0000 - 0x71bc8000 C:\WINDOWS\system32\rdpsnd.dll 0x771f0000 - 0x77201000 C:\WINDOWS\system32\WINSTA.dll 0x77ba0000 - 0x77bfa000 C:\WINDOWS\system32\msvcrt.dll 0x71c40000 - 0x71c97000 C:\WINDOWS\system32\NETAPI32.dll 0x76b70000 - 0x76b7b000 C:\WINDOWS\system32\PSAPI.DLL 0x6d290000 - 0x6d298000 C:\Program Files\Java\jre6\bin\hpi.dll 0x6d7b0000 - 0x6d7bc000 C:\Program Files\Java\jre6\bin\verify.dll 0x6d330000 - 0x6d34f000 C:\Program Files\Java\jre6\bin\java.dll 0x6d7f0000 - 0x6d7ff000 C:\Program Files\Java\jre6\bin\zip.dll 0x68000000 - 0x68035000 C:\WINDOWS\system32\rsaenh.dll 0x76920000 - 0x769e2000 C:\WINDOWS\system32\USERENV.dll 0x6d610000 - 0x6d623000 C:\Program Files\Java\jre6\bin\net.dll 0x71c00000 - 0x71c17000 C:\WINDOWS\system32\WS2_32.dll 0x71bf0000 - 0x71bf8000 C:\WINDOWS\system32\WS2HELP.dll 0x71b20000 - 0x71b61000 C:\WINDOWS\System32\mswsock.dll 0x76ed0000 - 0x76efa000 C:\WINDOWS\system32\DNSAPI.dll 0x76f70000 - 0x76f77000 C:\WINDOWS\System32\winrnr.dll 0x76f10000 - 0x76f3e000 C:\WINDOWS\system32\WLDAP32.dll 0x76f80000 - 0x76f85000 C:\WINDOWS\system32\rasadhlp.dll 0x6d630000 - 0x6d639000 C:\Program Files\Java\jre6\bin\nio.dll 0x5f270000 - 0x5f2ca000 C:\WINDOWS\system32\hnetcfg.dll 0x71ae0000 - 0x71ae8000 C:\WINDOWS\System32\wshtcpip.dll 0x72000000 - 0x72012000 C:\Syntellect\ocs\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.3.R33x_v20080118\eclipse_1023.dll 0x77420000 - 0x77523000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\COMCTL32.dll 0x77da0000 - 0x77df2000 C:\WINDOWS\system32\SHLWAPI.dll 0x77b90000 - 0x77b98000 C:\WINDOWS\system32\VERSION.dll 0x6d790000 - 0x6d798000 C:\Program Files\Java\jre6\bin\sunmscapi.dll 0x761b0000 - 0x76243000 C:\WINDOWS\system32\CRYPT32.dll 0x76190000 - 0x761a2000 C:\WINDOWS\system32\MSASN1.dll VM Arguments: jvm_args: -Xbootclasspath/a:c:\syntellect/ocs/plugins/stax2-api_3.0.1.jar;c:\syntellect/ocs/plugins/woodstox-core-asl_4.0.5.jar -Duser.dir=c:\syntellect -Djava.rmi.server.codebase=file:\C:\syntellect\ocs\plugins\com.syntellect.outbound.iom.apropos_0.0.1\lib\CHIPclient.jar java_command: c:\syntellect\ocs\plugins\org.eclipse.equinox.launcher_1.0.1.R33x_v20080118.jar Launcher Type: SUN_STANDARD Environment Variables: PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Windows Resource Kits\Tools;C:\Program Files\YourKit Java Profiler 7.0.12\bin\win32; USERNAME=Administrator OS=Windows_NT PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 7, GenuineIntel --------------- S Y S T E M --------------- OS: Windows Server 2003 family Build 3790 Service Pack 2 CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 15 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3 Memory: 4k page, physical 2096388k(757460k free), swap 3444692k(2457416k free) vm_info: Java HotSpot(TM) Client VM (11.2-b01) for windows-x86 JRE (1.6.0_12-b04), built on Jan 17 2009 09:57:14 by "java_re" with MS VC++ 7.1 time: Thu Nov 19 01:55:36 2009 elapsed time: 126527 seconds </code></pre> http://stackoverflow.com/questions/647827/do-you-plan-to-use-the-scala-programming-language-and-on-what-project 5 Do you plan to use the Scala programming language and on what project? Berlin Brown 2009-03-15T13:44:33Z 2009-11-20T18:01:54Z <p>Where do you seen using Scala for your project?</p> http://stackoverflow.com/questions/1502433/switching-between-bytecode-versions-for-a-java-class-file 1 Switching between bytecode versions for a Java class file knorv 2009-10-01T07:38:03Z 2009-11-19T16:33:35Z <p>Given a Java class file (ClassName.class) with bytecode version X is there a general way to convert this class file from being represented in bytecode version X to being represented in bytecode version Y?</p> <p>Assumptions:</p> <ul> <li>The source code is not available. The class file is the only available representation of the class.</li> <li>The class file is heavily obfuscated, so decompiling the class with say jad or similar program and then recompiling it with "-target ..." does not work.</li> </ul> <p>Updates after initial post:</p> <ul> <li>Update #1: Futhermore, assume that bytecode version X and bytecode version Y are sufficiently close so that all instructions used by the class (currently in bytecode version X) also exists in version Y.</li> </ul> http://stackoverflow.com/questions/1758374/error-your-application-used-more-memory-than-the-safety-cap-of-500m-specify-j 0 Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack trace puqt 2009-11-18T19:17:55Z 2009-11-18T19:36:14Z <p>i was running a jruby something.rb script and suddenly it throws this </p> <pre><code>Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack trace </code></pre> http://stackoverflow.com/questions/1696028/can-sun-jvm-handle-gigantic-heap-sizes-without-problems-and-how 9 Can Sun JVM handle gigantic heap sizes without problems, and how? utteputtes 2009-11-08T10:56:20Z 2009-11-18T19:24:50Z <p>I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 10 gigabytes, 32 gigabytes, and so on... I simply can not believe any of those numbers and have been wondering about the issue now for a while. </p> <p>So, I have three part question I would hope someone with experience could answer:</p> <ol> <li>Given the following case how would you tune the heap and GC settings?</li> <li>Would there be noticeable hickups (pauses of JVM etc) that would be noticed by the end users?</li> <li>Should this really still work? I think it should.</li> </ol> <p>The case:</p> <ul> <li>64 bit platform</li> <li>64 cores</li> <li>64 gigabytes of memory</li> <li>The application server is client facing (ie. Jboss/tomcat web application server) - complete pauses of JVM would probably be noticed by end users</li> <li>Sun JVM, probably 1.5</li> </ul> <p>To prove I am not asking you guys to do my homework this is what I came up with:</p> <ol> <li><code>-XX:+UseConcMarkSweepGC -XX:+AggressiveOpts -XX:+UnlockDiagnosticVMOptions -XX:-EliminateZeroing -Xmn768m -Xmx55000m</code></li> <li>CMS should reduce the amount of pauses, although it comes with overhead. The other settings for CMS seem to default automatically to the number of CPUs so they seem sane to me. The rest that I added are extras that might do good or bad generally for performance, and they should probably be tested.</li> <li>Definitely.</li> </ol> http://stackoverflow.com/questions/1754077/setting-jvm-parameters-at-runtime 2 Setting JVM parameters at runtime Guy 2009-11-18T06:38:18Z 2009-11-18T07:51:44Z <p>Is it possible to change/modify/adding VM parameters after the JVM is already loaded (running)? If so, how can I do it?</p> http://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm 8 How does bytecode get verified in the JVM? Thomman Yacob 2009-04-16T06:42:37Z 2009-11-17T13:57:46Z <p>How does bytecode get verified in the JVM?</p> http://stackoverflow.com/questions/116519/best-resources-for-learning-javafx 15 Best Resources for Learning JavaFX? David 2008-09-22T18:14:19Z 2009-11-17T04:25:33Z <p>For those of us learning JavaFX, what are the best resources you've found so far? </p> <p>(One of the difficulties in finding good JavaFX resources is that things written before July 2008 are often no longer valid because of changes made to beta version of the language)</p> <p>I've found:</p> <ul> <li><a href="http://learnjavafx.typepad.com/" rel="nofollow">James Weaver's JavaFX Blog</a></li> <li><a href="http://www.manning.com/morris/" rel="nofollow">JavaFX in Action</a> by Manning Press</li> <li><a href="https://openjfx.dev.java.net/" rel="nofollow">OpenJFX</a> on dev.java.net</li> </ul> <p>What have you found that I might be missing?</p> http://stackoverflow.com/questions/1740837/how-to-send-signal-to-jvm-created-by-jnicreatejavavm-call 1 How to send signal to JVM created by JNI_CreateJavavm call? Ripley 2009-11-16T08:32:34Z 2009-11-16T23:05:59Z <p>Hello Guys</p> <p>Is there any possibility that I can directly send signal to a Java virtual machine which is created by calling JVM_CreateJavavm in native C/C++ code? </p> <p>e.g.:</p> <p>For a normal Java process, say its pid is 12345, I can send a signal 3 to it like this ... kill -3 12345, and hopefully I could trigger javacore or heapdump by changing JVM configurations.</p> <p>However if the JVM is created thru JNI API and wrapped inside a C/C++ application, only the native process's PID is visible, in that case if I send signal to that process, the whole process is just terminated and seems the JVM cannot receive the signal at all.</p> <p>Thanks in advance ...</p> http://stackoverflow.com/questions/55322/jvm-choices-on-windows-mobile 2 JVM choices on Windows Mobile.. Prakash 2008-09-10T21:05:06Z 2009-11-16T12:42:38Z <p>What are the JVM implementations available on Windows Mobile?</p> <p><a href="http://www.esmertec.com/40.html" rel="nofollow">Esmertec JBed</a> is the one on my WinMo phone.</p> <p>Wondering how many other JVM vendors are in this zone. Are there any comparison or benchmarking data available?</p> http://stackoverflow.com/questions/1692329/viewing-large-xml-files-in-eclipse 3 Viewing large XML files in eclipse? Paul Wicks 2009-11-07T07:34:37Z 2009-11-14T21:04:38Z <p>I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running out of heap space. I've tried tweaking the amount of memory available to the jvm in eclipse.ini but haven't had much success. Any ideas? </p> http://stackoverflow.com/questions/1677043/retrieve-main-class-jar-file-name-passed-to-the-jvm 0 Retrieve main class/jar file name passed to the JVM blissfool 2009-11-04T22:13:42Z 2009-11-14T13:09:26Z <p>As a C++ app, is there a way to query a java process(java.exe/javaw.exe) to retrieve the main class or jar file name that was passed to the JVM? I want the same result as when you run "jps -l":</p> <pre><code>C:\&gt;jps -l -V 2644 sun.tools.jps.Jps 4340 net.sourceforge.squirrel_sql.client.Main </code></pre> <p>I think I could get the command line parameter and try to parse for the class name, but I was wondering if there is simpler method to extract only the class name or jar file name reliably.</p> <p>Thanks!</p> http://stackoverflow.com/questions/441824/java-virtual-machine-vs-python-interpreter-parlance 10 Java "Virtual Machine" vs. Python "Interpreter" parlance? twils 2009-01-14T03:39:32Z 2009-11-14T04:55:15Z <p>It's seems rare to read of a Python "virtual machine" while in Java "virtual machine" is used all the time. Both interpret byte codes, why call one a virtual machine and the other an interpreter? </p> http://stackoverflow.com/questions/1715449/how-to-set-an-acknowlegement-before-jvm-shuts-down 1 How to set an acknowlegement before JVM shuts down? Roman Kagan 2009-11-11T14:20:51Z 2009-11-13T15:26:56Z <p>How to set an acknowledgement (like email or SMS) before JVM shuts down (this is on the server side, not client)?</p> http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse 23 What are the best JVM settings for Eclipse? Craig Angus 2008-09-26T22:28:19Z 2009-11-10T18:27:55Z <p>What are the best JVM settings you have found for running eclipse.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1698003/configure-visualvm-to-visualize-multiple-jvms 1 Configure VisualVM to visualize multiple JVMs parkr 2009-11-08T21:40:49Z 2009-11-10T14:07:48Z <p>I would like to use VisualVM to monitor a cluster of JVMs, say 50 - 100 processes.</p> <p>Is there a way to configure VisualVM to monitor to a specified list of JVMs on startup without adding them manually?</p> http://stackoverflow.com/questions/1701686/why-should-methods-have-a-single-entry-and-exit-points 4 Why should methods have a single entry and exit points? chrisg 2009-11-09T15:19:41Z 2009-11-10T11:57:14Z <p>Looking around forums and the web, i have come across the advice that a method should have single entry and exit points. My first question is does the sinlge entry point apply to java. I can't see how a method can have an entry point other than invoking it and passing argumnets to it.</p> <p>The second question is that why only a single return statement, is this for the sake of the clarity of the source code, or can the compiler/jvm optomize a method with a single exit point in a way which it can't with 2 exit points.</p> http://stackoverflow.com/questions/1705651/how-to-run-a-java-file-project-in-remote-jvm-which-is-present-in-other-network 1 How to run a java file/project in remote JVM which is present in other Network ? Srinivas Iyer 2009-11-10T04:38:19Z 2009-11-10T11:31:17Z <p>I am trying to work on a project which involves running/executing the java file in three JVM on different Network. If i locally run the Java file should simultaneously should run in all three or two JVM.</p> <p>For example :/usr/local/helloWorld.java</p> <pre><code>class HelloWorld { public static void main(String args[]){ System.out.println("Hello World"); } } </code></pre> <p>When i run this <code>/usr/local/$java helloWorld</code> This should print Hello World in JVM1(locally), JVM2(which is Remote) . </p> <p>Is there way to say remote machine JVM2 that path for class file is located at <code>/usr/local/</code> execute the file from there ?.</p> <p>or</p> <p>Should i run <code>$java helloWorld</code> in remote machine also ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1432180/is-there-a-way-to-get-which-classes-a-classloader-has-loaded 1 Is there a way to get which classes a ClassLoader has loaded? uriDium 2009-09-16T10:31:14Z 2009-11-10T07:07:20Z <p>I am trying to implement some unit testing for an old framework. I am attempting to mock out the database layer. Unfortunately our framework is a bit old and not quite using best practices so there is no clear separation of concerns. I am bit worried that trying to mock out the database layer might make the JVM load a huge number of classes that won't even be used. </p> <p>I don't really understand class loaders that well so this might not be a problem. Is there a way to take a peak at all the classes a particular ClassLoader has loaded to prove what is going on under the hood?</p> http://stackoverflow.com/questions/1690219/gwt-osx-swt-issues 0 GWT + OSX = SWT issues John Leonard 2009-11-06T20:34:04Z 2009-11-09T22:47:44Z <p>I'm new to GWT development and I'm putting myself through the paces with Google's tutorial but I'm getting errors:</p> <blockquote> <p>java[10574:80f] [Java CocoaComponent compatibility mode]: Enabled 2009-11-06 15:27:38.769 java[10574:80f] [Java CocoaComponent compatibility mode]: Setting timeout for SWT to 0.100000</p> </blockquote> <p>I checked my Java prefs and I have Java SE6 (64 bit) as the preferred JVM. I'm really not sure how to clear this up.</p> http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac 27 In the 13 years that Java has been around, are there any specific examples of backward incompatibilities? knorv 2009-10-31T16:55:04Z 2009-11-09T21:12:53Z <p>It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).</p> <p>During those thirteen years the following notable releases have been made:</p> <ul> <li>JDK 1.0 (January, 1996)</li> <li>JDK 1.1 (February, 1997)</li> <li>J2SE 1.2 (December, 1998)</li> <li>J2SE 1.3 (May, 2000)</li> <li>J2SE 1.4 (February, 2002)</li> <li>J2SE 5.0 (September, 2004)</li> <li>Java SE 6 (December, 2006)</li> </ul> <p>I'm looking for specific examples of backwards incompatibilities during the history of the Java platform. </p> <p>Question: </p> <ul> <li><b>In the thirteen year history of the Java platform, is there any examples of Java backwards incompatibility where Java source code/Java class files targeting Java version X won't compile/run under version Y (where Y > X)?</b></li> </ul> <p>House rules:</p> <ul> <li>Please include references and code examples where possible. </li> <li>Please try to be very specific/concrete in your answer.</li> <li>A class that is being marked as @Deprecated does not count as a backwards incompatibility.</li> </ul>