• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

can we use Swing Component in JSP page

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I need you help..
Plz help in solving this problem..
I got a work in which i have to change my standalone application(developed in swing) into web-based application(using JSP).
so will you plz tell me how i can use swing component or similar thig to complete that task.
I have to create a same page which is there in Swing.

waiting for your reply.
Thanx in advance
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSP is a server-side technology, while Swing works on the client. There is no way to use Swing in JSP.

It might be possible to convert the Swing application into a Swing applet, which can run inside one of your web pages, though.
[ November 14, 2005: Message edited by: Ulf Dittmer ]
 
Ahmed Shaikh
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanx for your reply.
how i can use panel borderName in JSP which is there in swing.
is there any way in which i can give table row borderName im jsp.

Plz help ...
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There are many things Swing can do which HTML can't. Asking in the HTML/JavaScript forum might yield an answer faster.
 
Ranch Hand
Posts: 2874
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ahmed Shaikh:
how i can use panel borderName in JSP which is there in swing.
is there any way in which i can give table row borderName im jsp.



Are you again trying to use Swing in JSP?
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One can just use Applets in JSP, and the applets might be using of course swing-AWT-SWT etc.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic