Search Results

0
votes

Where to close java PreparedStatements and ResultSets?

I use this.. finally { if (ps != null) ps.close(); if (rs != null) rs.close(); } …
0
votes

Space-Efficient Data Structure for Storing a Word List?

Completely wild idea... (i.e. most likely very wrong) How about storing the words as a tree of all possible letter combinations? Then each "word" only costs a single char and two po …
2
votes

Tracking memory usage in a tomcat webapp

jconsole can give you summary statistics. I've used it in the past while load testing to infer …
0
votes

Viewing contents of a .jar file

I've set the default action in windows to "Open with WinZip". This makes it easy to manage JARs as archives. You can even add/remove files manually. …
1
vote

Working with large wsdl, can we trim it?

The physical size of the WSDL should not matter if you generate client stubs classes at compile time (e.g. via AXIS wsdl2java.) If you are downloading the WSDL and parsing it for …
0
votes

War-file deployment with shared resources

Unfortunately, for you .war files are .zip files at heart and .zip files do not support symbolic links. If you are ONLY deploying to a windows machine you may have luck using a shortcut file. How …
2
votes

Why might one also use a blank constructor?

Is the object Serializable? To allow subtypes of non-serializable classes to be …
0
votes

Class.getResourceAsStream() issue

Specify the package. Assuming you use com.yourcompany.file it SHOULD be unique. (Unless someone WANTS to override your config file via the classpath.) …
0
votes

Java, GUI builder or hand coding?

I've used Netbeans in the past to build GUI code and used Eclipse to write the program logic. Just include the GUI code as a separate LINKED source folder. …
0
votes

How to intercept xml response and request during web service invocation?

Fiddler or SoapUI will let you see and even CHANGE the request/response in route. …
0
votes

Is jdbc by itself compatible with mysql.

JDBC is a specification for Java/database interaction. As a specification it's compatible with almost every DB. However, you need a JDBC compliant driver written for your databas …
0
votes

Can I have applications using Java 1.4.2_12 and Java 1.5 on the same windows server

YES. See above. Of course, running two VMs (of any version) takes twice the RAM. …
0
votes

What tools do you use to manage old (Java) code lines?

On top of the version control, I would also recommend a good IDE and code clean-up tool. This will save you a bunch of frustration especial with legacy code where lots of people h …
1
vote

Force JUnit to run one test case at a time

Congratulations. You have found a bug. ;-) If the tests "shouldn't" effect each other, then you may have uncovered a situation where your code can enter a broken state. Try adding asserts …
5
votes

How to remove System.out.println’s from codebase

Log4E is an eclipse plugin that has a "Replace System.out.println()" feature. It will happily convert all those pesky println calls to log4j calls. It will even wrap them with a log level check. …

1 2 3 4 next
15 30 50 per page