Re: Vector in JSP

2000-11-09 Thread Antonio W. Lagnada
ubject: Re: Vector in JSP I tried LinkedList. First of all, when I do refresh, the old data will be lost, it only keep the current refresh data (on the server side). Secondly, my jsp page doesn't recognize the LinkedList as a valid method from java.util.LinkedList. Why?

Vector in JSP

2000-11-07 Thread Chen Shirley
Hi everyone, I need to use a Vector to store strings in my JSP page. This vector will store at least 1000 elements. After that, if there are more than 1000, I want to get rid of some old data and put the new elements in the vector. I know if a vector grow too big, it will eat up memory. Could

Re: Vector in JSP

2000-11-07 Thread Larry Hoffman
Why not use a LinkedList - Larry - Original Message - From: "Chen Shirley" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 07, 2000 10:02 AM Subject: Vector in JSP Hi everyone, I need to use a Vector to store strings in my JSP page. This vector

Re: Vector in JSP

2000-11-07 Thread Chen Shirley
] wrote: Why not use a LinkedList - Larry - Original Message - From: "Chen Shirley" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 07, 2000 10:02 AM Subject: Vector in JSP Hi everyone, I need to use a Vector to store strings in my JSP page. T

Re: Vector in JSP

2000-11-07 Thread Larry Hoffman
t: Tuesday, November 07, 2000 11:31 AM Subject: Re: Vector in JSP I tried LinkedList. First of all, when I do refresh, the old data will be lost, it only keep the current refresh data (on the server side). Secondly, my jsp page doesn't recognize the LinkedList as a valid method from java.util.