Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp

Chan sekhar

Greenhorn
+ Follow
since May 03, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Chan sekhar

You could split based on a bunch of delimiters like space, ',', \t, \n and so on and so forth
15 years ago
You could have 2 JButtons --> + and =
When you click +, a new JTextField opens up so that the user can enter a number. The user is restricted to a fixed number of inputs.
When you click =, a new JTextField with the sum is displayed.

15 years ago
Question 25>>
Answer is 4
The doAfterBody() will not be executed because the body class extends TagSupport, not BodyTagSupport.
The doStartTag() method returns EVAL_BODY_INCLUDE, ensuring that the tag body will be printed. The result is that Hello will be printed.