10
votes
8answers
2k views
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)?
There is a case where a map will be constructed, and once it is initialized, it will never be modified again. It will however, be accessed (via get(key) only) from multiple threads. Is it safe to …
2
votes
7answers
1k views
Simple properties to string conversion in Java
Using Java, I need to encode a Map<String, String> of name value pairs to store into a String, and be able to decode it again. These will be stored in a database column, and will probably u …
5
votes
How do you crash a JVM?
A perfect JVM implementation will never crash.
To crash a JVM, aside from JNI, you need to find a bug in the VM itself. An infinite loop just consumes CPU. Infinitely allocating memory sh …
4
votes
How to default the source folder for new JUnit tests in Eclipse?
No.
Unless you change the plugin code, the default source folder is always the same as that containing the class you right clicked on (not necessarily the first source folder listed). I ag …
0
votes
How can I find the response time of a HTTP request through a Socket
I would say it depends on what exact interval you are trying measure, the amount of time from the last byte of the request that you send until the first byte of the response that you receive? Or u …
6
votes
Is the Contains Method in java.lang.String Case-sensitive?
Yes, contains is case sensitive. You can use java.util.regex.Pattern with the CASE_INSENSITIVE flag for case insensitive matching:
Pattern.compile(Pattern.quote(s2), Pattern.CASE_I …
1
vote
Bit manipulation and output in Java
Assuming the String has a multiple of eight bits, (you can pad it otherwise), take advantage of Java's built in parsing in the Integer.valueOf method to do something like this:
Stri …
8
votes
How to abort a thread in a fast and clean way in java?
The thread that is updating the 3D view should periodically check some flag (use a volatile boolean) to see if it should terminate. When you want to abort the thread, just set the fla …
58
votes
When do you use Java’s @Override annotation and why?
Use it every time you override a method for two benefits. Do it so that you can take advantage of the compiler checking to make sure you actually are overriding a method when you think you are. T …
2
votes
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)?
After a bit more looking, I found this in the java doc (emphasis mine):
Note that th …
1
vote
How can I give java.util.Random a specific seed in thirdparty classes?
Consider modifying the third party libraries to have them use a seen for their Random instances. Though you do not have the source code, you can probably edit the bytecode to do it. One helpful t …
3
votes
Do you ever use the volatile keyword in Java?
One common example for using volatile is to use a volatile boolean variable as a flag to terminate a thread. If you've started a thread, and you want to be able to safely …
0
votes
Best way to extract a timezone from a mail Date header in Java?
It looks like you already mentioned this in one of your comments, but I think it's your best answer. The JavaMail library contains RFC822 Date header parsing code in javax.mail.internet.Mail …
0
votes
How to avoid type safety warnings with Hibernate HQL results?
No, but you can isolate it into specific query methods and suppress the warnings with a @SuppressWarnings("unchecked") annotation.
…
2
votes
What’s the nearest substitute for a function pointer in Java?
You may also be interested to hear about work going on for Java 7 involving closures:
What’s …
