Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to call an applet in a jsp through javascript as a popup.

i want that the applet should come as pop up and then after completing its task it should close automatically.

This is the code i'm using right now but it starts the applet as a plugin.

XML
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <script type="text/javascript" src="deployjava.js" ></script>
    <script>
        function showApplet()
        {
            var attributes = {code:'websample.WebcamApplet.class',
                archive:'websample.jar,core.jar, javacv.jar, javase.jar, jna.jar',
                width:640, height:480} ;
            var parameters = {fontSize:100} ;
            var version = '1.6' ;
            deployJava.runApplet(attributes, parameters, version);
           

            var searchPic;
            searchPic = new Image();
            searchPic.src = "E:/file.bmp";
            document.getElementById(0).src=searchPic.src;
         }
       
    </script>
    <body>
        <input type="button"  align="center" onclick="javascript:showApplet()" value="Show" >
        <img  id="0" height="480" width="640">

    </body>
</html>
Posted

1 solution

you can use simple applet tag to call an applet
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900