Search Results

2
votes

Should the Java “this” keyword be used when it is optional?

I tend to consider the choice a highly context sensitive one. Where it helps make the code more understandable, I include it. Where it doesn't, I don't. That being said, I tend to write my …
3
votes

JSP: EL expression is not evaluated

I know it's supposed to be on by default, but I run across pages now and again (or even the same page that changes behavior) where the EL processing doesn't happen. Adding the following to the top …
2
votes

Java HashMap indexed on 2 keys

This may be overkill for your needs, but I don't know how complex and speed sensitive your needs are, so I'll throw it out there... Have you considered looking at an in-memory (or even loca …
0
votes

Is there any suggestions about cutting cpu usage in Java?

Are you, by any chance, parsing the HTML using the built in Java XML DOM stuff? From past experience, it can result in some pretty hefty CPU usage (and it's the slowest implementation I've ever see …
0
votes

Object locking in Java

Would it be possible to just create a new collection and swap them out once it's created? Ie. instead of: Write: Lock Clear collection Load collection Unlock Read: …
4
votes

Best Practices ElseIf against Throw Exception

Others have answered your question, but I thought I'd point out... Just because Java doesn't have the "goto" command (implemented), doesn't mean you should use Exceptions to simulate them. …
1
vote

JSR168 portlet request cuts param value after # symbol

Anything after the # in an URL specifies the location on the page the browser should display; it's not part of the URL itself. As such, if you want an actual # in your URL, it needs to be escaped ( …
0
votes

How does one instantiate an array of maps in Java?

Short answer appears to be that you really just can't. See the following for a blog about it. http:/ …
1
vote

Java references values are addresses values?

From: http://stackoverflow.com/questions/1040868/java-syntax-and-meaning-behind-b1ef9157- …
1
vote

Is making an empty string constant worth it?

As a tangent to the question, I generally recommend using a utility function when what you're really checking for is "no useful value" rather than, specifically, the empty string. In general, I ten …
1
vote

Design of an Alternative (Fluent?) Interface for Regular Expressions

The short answer, for me, is that, once you get to regular expressions (or other pattern matching that does the same thing) that are long enough to cause a problem... you should probably be conside …
1
vote

Escaping an apostrophe in Java

Using StringEscapeUtils: StringEscapeUtils.escapeSql(yourstring); …