Tips for using core Java SE APIs
Core Java Technologies Tech Tips
Archives
« May 2008
SunMonTueWedThuFriSat
    
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
       
Today
Click me to subscribeSubscribe
Search

Links
 

Today's Page Hits: 136

Main | Next page »
Thursday Apr 24, 2008
SwingSet3, Nimbus, and Java SE 6 Update 10 Beta
Discover the changes and improvements included in Nimbus in the Java SE 6 Update 10.[Read More]
Posted at 09:41AM Apr 24, 2008 by dananourie in TechTip  |  Comments[0]

Friday Apr 04, 2008
JSlider Appearance Improvements
Learn how you can change any of the three defaults in JSlider: the direction of the scrollbar, and whether tick marks should appear, and what to show next to them.[Read More]
Posted at 01:34PM Apr 04, 2008 by dananourie in TechTip  |  Comments[3]

Monday Mar 10, 2008
Using Generics With Wildcards and Extends
Learn how to use generics with Wildcards and Extends.[Read More]
Posted at 04:56PM Mar 10, 2008 by dananourie in TechTip  |  Comments[16]

Tuesday Feb 12, 2008
Getting to Know BoxLayout
Learn how and when to use the BoxLayout manager, plus how to make use of the Box struts and glue components.[Read More]
Posted at 03:37PM Feb 12, 2008 by dananourie in TechTip  | 

Wednesday Jan 23, 2008
Sorting Strings
Sorting strings with the Java platform can be thought of as an easy task, but there is much more thought that should be put into it when developing programs for an international market. [Read More]
Posted at 01:41PM Jan 23, 2008 by dananourie in TechTip  |  Comments[6]

Tuesday Jan 08, 2008
Quiz Answers
Answers to Quiz[Read More]
Posted at 09:38AM Jan 08, 2008 by dananourie in TechTip  |  Comments[1]

January 2008 Core Java Tech Tips Quiz
We've made it through another year, and it's time for another tech tips quiz.[Read More]
Posted at 09:37AM Jan 08, 2008 by dananourie in TechTip  |  Comments[4]

Wednesday Jan 02, 2008
Placing Components on Tabs
Learn how to create a JTabbedPane component container that accepts components placed within a panel for each tab.[Read More]
Posted at 11:36AM Jan 02, 2008 by dananourie in TechTip  |  Comments[1]

Monday Dec 03, 2007
Using Callable to Return Results From Runnables
Learn about the Callable interface, and its call method to return an Object.[Read More]
Posted at 02:59PM Dec 03, 2007 by dananourie in TechTip  |  Comments[3]

Wednesday Nov 28, 2007
Using the MBeanRegistration Interface to Manage MBean Life Cycles
This technical tip focuses using the MBeanRegistration interface to manage Management Bean (MBean) life cycles.[Read More]
Posted at 12:29PM Nov 28, 2007 by dananourie in TechTip  | 

Wednesday Sep 19, 2007
The Preferences API
There is more to the Preferences API than just getting and setting user specific settings. There are system preferences, import and export preferences, and event notifications associated with preferences. There is even a way to provide your own custom location for storage of preferences.[Read More]
Posted at 11:30AM Sep 19, 2007 by John O'Conner in TechTip  |  Comments[1]

Tuesday Sep 18, 2007
Using Enhanced For-Loops with Your Classes
The enhanced for-loop is a popular feature introduced with the Java SE platform in version 5.0. Its simple structure allows one to simplify code by presenting for-loops that visit each element of an array/collection without explicitly expressing how one goes from element to element.[Read More]
Posted at 04:20PM Sep 18, 2007 by John O'Conner in TechTip  |  Comments[2]

Thursday Aug 23, 2007
The Attach API
The Attach API allows you to attach to a target virtual machine (VM). By attaching to another VM, you can monitor what's going on and potentially detect problems before they happen.[Read More]
Posted at 10:03AM Aug 23, 2007 by John O'Conner in TechTip  |  Comments[5]

Monday Aug 20, 2007
Logging Localized Message
While the Logging API hasn't changed much since being introduced with the 1.4 release of Java SE, there are two things many people don't realize when they log a message.[Read More]
Posted at 09:27AM Aug 20, 2007 by John O'Conner in TechTip  |  Comments[2]

Thursday Jul 26, 2007
The need for BigDecimal
Although programmers frequently use the float or double type to represent currency values, the BigDecimal class is more appropriate. This tips shows you the pitfalls of using a float or double, and shows how you should use BigDecimal instead.[Read More]
Posted at 12:00AM Jul 26, 2007 by John O'Conner in TechTip  |  Comments[5]