Search Results

9
votes
8answers
2k views

csv api for java

Hi everyone, Can anyone recommend a simple API that will allow me to use read a csv input file, do some simple transformations, and then write it. A quick google has found …
0
votes
2answers
332 views

Multiple instances of a java web application sharing a resource

Hi All, I have a web service, that takes an input xml message, transforms it, and then forwards it to another web service. The application is deployed to two web logic app servers f …
8
votes
8answers
2k views

Static nested class in Java, why?

Hi All, I was looking at the Java code for LinkedList and noticed that it made use of a static nested class Entry. public class LinkedList<E> ... { ... private stati …
0
votes
2answers
306 views

Creating dynamic data entry forms

Hi, I have a small project where I would like to generate dynamic data entry forms with a little bit of logic behind them. A simple use case might be a Football resulting form, so y …
0
votes
4answers
152 views

Bessel library function in Java

Hello everyone, I'm looking for a bessel function in Java that matches the Excel function BESSELI, description provided: Returns the modified Bessel function, whi …
1
vote

Any good interview questions to ask prospective Junior java developers?

The best (only?) way to get an idea of someones ability to program is to sit down with them and program with them. If you are too busy to do this, ask some of the developers the candidate will be w …
2
votes

What criteria should be used to judge and compare Java applications?

I think the answer depends upon what Java Programming Challenge was. If all the projects are trying to solve a similar problem, can you automate testing, and do some sort of comparison base …
0
votes

What is your favorite hot-key in Eclipse?

CTRL-ALT-UP/DOWN ARROW to copy the line or selection is pretty cool. And one I miss in Netbeans, so if anyone knows the equivalent... …
12
votes

Java core API anti-Patterns. What is wrong?

Stack extends Vector! insanity. if I am using a stack object I expect users to be able to push and pop, and err, thats about it. The java Stack also has all the vector functionalit …
-1
votes

How to go about mocking a class with final methods?

Hi, The following code will also allow you to do it. I am not saying that this is good practice, but it is an interesting use (abuse?) of anonymous classes. public class Job …