Bala Amuthan

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

Recent posts by Bala Amuthan

By using 'multipart/form-data' I am uploading a csv file & doing some stuff in the database. Once it is completed, I am returning a list to my action. I need to display this list and a button. Once the button is clicked, I need to export this list as a csv file. This 'Export' functionality works if I don't display the list. If the list is displayed and then the 'Export' gives Internal Server Error 500. I am not able to figure out the problem here..I will appreciate any help on the same..Thanks, Amuthan
20 years ago
JSP
I have to load a csv file and parse it. Is there any tag or easy way to do it? I am planning for html:file to upload the file and use a inputStreamReader to read and parse. But I want to know if any tag(s) available for the same purpose? Thanks.
20 years ago
I have to load a csv file and parse it. Is there any tag or easy way to do it? I am planning for html:file to upload the file and use a inputStreamReader to read and parse. But I want to know if any tag(s) available for the same purpose? Thanks.
[ November 13, 2003: Message edited by: Bala Amuthan ]
20 years ago
JSP
What is the answer to the following question? Please explain.
1 public class X {
2 public void m(Object x) {
3 x = new Integer(99);
4 Integer y = (Integer)x;
5 y = null;
6 System.out.println("x is" + x);
7 }
8 }
When is the Integer object, created in line 3, eligible for garbage collection?
A) never
B) just after line 4
C) just after line 5
D) just after line 6 (that is, as the method returns)
E) when the calling method sets the argument it passed into this method to null
Congratulations!!.
Please send me Ur notes at bamuthan@yahoo.com
23 years ago