• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to use a Java class into an HTML file

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I would like to call a java class into my html page. The java class will use the name of the calling HTML page to write its name into a file.
In fact I would like to write some informations (into a file on the hard drive) from the HTML pages that call the java class.
Let's have an example :
1- Click on a button in "page1.html" -> call of "java.class" -> "c:\file.txt" containts the string "page1.html"
2- Click on a button in "page2.html" -> call of "java.class" -> "c:\file.txt" containts the string "page1.html,page2.html"
3- Click on a button in "page3.html" -> call of "java.class" -> "c:\file.txt" containts the string "page1.html,page2.html,page3.html"
and so on......
I need to know the instructions to call and use the java.class into the HTML page.
And I need to know the java instructions to get the HTML page name.
Do I have to pass a parameter (name of the page) to the java class? If so how do I manage that on both side (java, HTML)
I would like to have a universal code that works for Netscape / IE.
Any answer will be grandly appreciated.
Thanks.
Cyril
 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://java.sun.com/docs/books/tutorial/getStarted/applet/running.html
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic