0
votes
How to avoid OutOfMemoryError when using Bytebuffers and NIO?
This can depend on the particular JDK vendor and version.
There is a bug in GC in some Sun JVMs. Shortages of direct memory will not trigger a GC in the main heap, but the direct memory is …
2
votes
How can I determine if a different process id is running using Java or JRuby on Linux?
Unix has a special feature of the kill system call around signal zero. Error checking is performed, but no signal is sent.
def pid_exists? (pid)
system "kill -0 #{pid}"
ret …
0
votes
Configure a Java Socket to fail-fast on disconnect?
Set a different thread to reading from the socket. It will block until the socket is closed, and then an exception will be thrown. Catch that exception to detect the close immediately.
…
7
votes
Is Eclipse the best IDE for Java?
Eclipse was the first IDE to move me off of XEmacs. However, when my employer offered to buy me a Intellij IDEA license if I wanted one it only took 3 days with an evaluation copy to convince me t …
0
votes
Why do SocketChannel writes always complete for the full amount even on non-blocking sockets?
Where are you sending the data? Keep in mind that the network acts as a buffer that is at least equal in size to your SO_SNDBUF plus the receiver's SO_RCVBUF. Add this to the reading activity by …
1
vote
Java - Common Gotchas
(un)Boxing and Long/long confusion. Contrary to pre-Java 5 experience, you can get a NullPointerException on the 2nd line below.
Long msec = getSleepMsec();
Thread.sleep(msec);
…
1
vote
How can I replace the current Java process, like a unix-style exec?
Here is a complicated, but portable, way.
Split your code into two jars. One very small jar is there just to manage process startup. It creates a ClassLoader that holds the other jar on i …
3
votes
Quick method to convert classes implementing same interface
The Apache Bean Utilities package has a tool for this.
org.apache.commons.beanutils.BeanUtils
.BeanUtils.copyProperties
public static void copyProperties(Object dest,
…
4
votes
How do you detect low memory situations within the java virtual machine?
Java (as of Java 5) now has a standard JMX bean that can be used to receive low memory notification. See java.lang.management.MemoryMXBean.
…
6
votes
Things possible in IntelliJ that aren’t possible in Eclipse?
Structural search and replace.
For example, search for something like:
System.out.println($string$ + $expr$);
Where $string$ is a literal, and $expr$ is …
0
votes
Best way to read structured binary files with Java
In the past I used DataInputStream to read data of arbitrary types in a specified order. This will not allow you to easily account for big-endian/little-endian issues.
As of 1.4 the java.n …
13
votes
When overriding equals in Java, why does it not work to use a parameter other than Object?
You're mixing up "overriding" and "overloading".
Overriding -- adding a replacement definition of an existing method for purposes of polymorphism. The method must have the same signature. …
2
votes
Truststore and Keystore Definitions
A keystore contains private keys, and the certificates with their corresponding public keys.
A truststore contains certificates from other parties that you expect to communicate with, or fr …
1
vote
Java: enough free heap to create an object?
The "try to allocate and handle the error" approach is very dangerous.
What if you barely get your memory? A later OOM exception might occur because you brought things too close to t …
0
votes
How to detect a Selector.wakeup call
You can't really be sure that the only reason that the selector woke up was due to the wakeup call. You may also have socket activity.
So, you need to make the caller of wakeup also do som …
