Embedding Swing Components in A Web Browser

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gautam Parai
    New Member
    • Sep 2006
    • 1

    Embedding Swing Components in A Web Browser

    Hi!!!!!

    Can anyone please tell me how can we embed Swing Components in a Web Browser ..... e.g. can i embed a JTextBox in a webbrowser in which a user can write something.... a general guideline would be really helpful
  • abadi
    New Member
    • Aug 2006
    • 5

    #2
    Hi,
    I think there is no need to do that. Because we have similar HTML tags that are doing the same jop.this tag will do the same
    Code:
    <textarea rows="numberOfRows" cols="numberOfColomns"> </textarea>

    Comment

    • r035198x
      MVP
      • Sep 2006
      • 13225

      #3
      Originally posted by abadi
      Hi,
      I think there is no need to do that. Because we have similar HTML tags that are doing the same jop.this tag will do the same
      Code:
      <textarea rows="numberOfRows" cols="numberOfColomns"> </textarea>
      Applets perhaps?

      Comment

      • raokantipudi
        New Member
        • Jun 2007
        • 2

        #4
        Originally posted by Gautam Parai
        Hi!!!!!

        Can anyone please tell me how can we embed Swing Components in a Web Browser ..... e.g. can i embed a JTextBox in a webbrowser in which a user can write something.... a general guideline would be really helpful

        Hi,
        Did you get the right answer for your question ?

        Here I have the same problem. I have one application developed in Swing.
        That i need to access from web (html / jsp). First of all is it possible ? if so... pls let me know.

        Thanks,

        Comment

        • venomrld
          New Member
          • Sep 2009
          • 1

          #5
          Using swing components in applet

          Hi, you could use JApplet and embed into html pages

          Comment

          Working...