JSP « JTable « Java Swing Q&A





1. JTable alternative for JSP    stackoverflow.com

I recently created an interactive Java Applet which communicates with the Google Maps API on a web page. Unfortunately Applets are a thing of the past (in my opinion) and I ...

2. Can JTable be embeded in a JSP    coderanch.com

3. how can use JTable in a JSP page    coderanch.com

You can't. The applet and the JSP will be run under two different JVMs in two different places, and, for the most part at two different times. The JSP, in this case is doing nothing more than telling the browser where to get the files needed for running the applet. What, exactly, are you trying to do?