Search Results

4
votes

Is it just me or are interfaces overused?

I find that in most cases interfaces are seriously underused. Using interfaces from the start allows you to divide behaviour and implementation. With complex applications this makes eraly …
11
votes

Java core API anti-Patterns. What is wrong?

Boolean.getBoolean("true"); Integer.getInteger("2"); ..... …
2
votes

Selection overridden by formatter.

Quick and dirty workaround is to use EventQueue.invokeLater from your focusListener. EventQueue.invokeLater(new Runnable(){ public void run() { yourTextField.selectAll();} }); …
2
votes

Problems running Swing application with IDEA 8M1

Ask your question directly on the IDEA website. They always react fast and the problem you have is probably either fixed or documented. …
1
vote

No stack trace generated on client site for NullPointerException?

The client only needs to know hat it needs to know. In alot of cases it perfectly fine to not show any stacktraces on your client. Your users should get clear error messages but dont care about a s …
1
vote

Java Tutorial

Thinking In java beats the sun tutorial for learning purposes Once you get the hang of it use The Really …
-1
votes

What is the easiest way to parse an INI file in Java?

Or with standard Java API you can use java.util.Properties new Properties() props = rowProperties.load(new FileInputStream(path)); …
2
votes

How to do memory profiling on remote java web application

you can change to VM params of your java application to allow remote profiling something like -agentlib:jprofilerti=port=25000 general explanation for jprolifer …
2
votes

Is Eclipse the best IDE for Java?

There is no best IDE. You make it as good as you get used using it. …
0
votes

Should Java Raw Types be Deprected?

There is no way to just migrate to generics …
9
votes

Java performance of StringBuilder in a loop

In the philosophy of writing solid code its always better to put your StringBuilder inside your loop. This way it doesnt go outside the code its intended for. Secondly the biggest improvme …
0
votes

Use AJAX instead of TagLib?

When i see your topic title i thought: You cant use Ajax in stead of a taglib. AJAX is javascript on the client and the taglib is java code on the server. After reading your post i …
0
votes

Netbeans GUI Designer & Fixed-Size Application Panels

I use this method to complete the task, not sure if its the best and you need to wait calling it until the frame is actually on the screen. protected void growBig() { int scr …
4
votes

Creating a transparent panel

Transaprancy is controlled with setOpaque(false) …
0
votes

What’s a good way to teach my son to program Java

Once you got your sun started you can try codeinvaders, competition can be very usefull to get him thinking, maybe even father sun competition [link text][1] [1]: …

1 2 3 4 5 next
15 30 50 per page