Link to home
Start Free TrialLog in
Avatar of sanjay_thakur
sanjay_thakur

asked on

running an applet


hi,

I have an applet which has many gif files

I can run the applet from the web server or from any IDE

but when I try to run the applet from appletviewer
or from the browser
like
appletviewer applet1.html
 

it gives me
java.secutiry.AccessControlException: access denied(
java.io.FilePermission logo.gif read)

what's the problem?

can I run the applet by just giving the applet1.html
in the browser like any other html file

I have put the jar file in the html
do I need to do something for the gif files?

This is my html file:
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<TITLE>
HTML Test Page
</TITLE>
</HEAD>
<body bgcolor="#0066FF">



<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.3 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 330 HEIGHT = 290 NAME = "LoginApplet" ALIGN = center VS
PACE = 0 HSPACE = 0 VSPACE= 30%  codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0">
<PARAM NAME = CODE VALUE = "LoginApp.class" >
<PARAM NAME = CODEBASE VALUE = "." >
<PARAM NAME = NAME VALUE = "LoginApplet" >
<PARAM NAME = ARCHIVE VALUE = "PocdClasses.jar">
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
<PARAM NAME="scriptable" VALUE="false">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.3"  CODE = "Login.class" CODEBASE = "." NAME = "LoginApplet" WIDTH = 90% HEIGHT = 90% ALIGN = center VSPACE = 0 HSPACE = 20%  scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html"><NOEMBED></COMMENT>

</NOEMBED></EMBED>
</OBJECT>

<!--"END_CONVERTED_APPLET"-->



</BODY>
</HTML>


thanks




Avatar of dviji
dviji

How you are loading the gif file... If you do any system dependent operation
then only you will get security exception...There is nothing special about Gif. I hope
you are doing some system dependent operations....i.e trying to access the client
system.

Try with this code...

import java.awt.*;
import java.applet.*;

public class MyApplet extends Applet
{
   Image image = null;

   public void init()
   {
      image = getImage(new URL(getCodeBase()+"image.gif"));
   }

   public void paint(Graphics g)
   {
      g.drawImage(image,1,1,this);
   }
}

Make sure your image.gif should available in the directory where you are keeping
your class file or in the jar.

If this one also gives an exception let me know.

dviji
ASKER CERTIFIED SOLUTION
Avatar of sandeepkhandelwal
sandeepkhandelwal

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sanjay_thakur

ASKER

Hi,

I have a structure problem

I mean I have many packages in my application

I have my class files
in  "c:/ariogui/classes/com/ario/gui/design/

I have my html file
  in "c:/ariogui/classes/

now I am able to run using "getClass.getResource("image name");

but I have to put all the gif files in the same place
as the classes

i.e all my gif files are in this directory
in  "c:/ariogui/classes/com/ario/gui/design/

My question is
If I want to put gif files in say "c:/ariogui/src"

then How do I get the images
using getClass.getResource();

I tried putting the path
like
getClass.getResource("c:/ariogui/src/image name");

but doesnot work

any help?










This question is LOCKED with a Proposed Answer.  If it helps you, great, accept it and grade it to close.  If not, reject it and comment as to why or what else is needed.

Few additional experts will join this collaboration effort, once a question has been locked.  Just want to confirm this to you.  If more than one expert helps you, you can always split points or award additional help in a new question, within the same topic area.  If you need help from us, post a zero point question here, and include the link:

https://www.experts-exchange.com/jsp/qList.jsp?ta=commspt

Moondancer
Community Support Moderator @ Experts Exchange
ADMINISTRATION WILL BE CONTACTING YOU SHORTLY.  Moderators Computer101 or Netminder will return to finalize these if still open in seven days.  Please post closing recommendations before that time.

Question(s) below appears to have been abandoned. Your options are:
 
1. Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you, but may help others. You must tell the participants why you wish to do this, and allow for Expert response.  This choice will include a refund to you, and will move this question to our PAQ (Previously Asked Question) database.  If you found information outside this question thread, please add it.
3. Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4. Delete the question (if it has no potential value for others).
   --> Post comments for expert of your intention to delete and why
   --> YOU CANNOT DELETE A QUESTION with comments; special handling by a Moderator is required.

For special handling needs, please post a zero point question in the link below and include the URL (question QID/link) that it regards with details.
https://www.experts-exchange.com/jsp/qList.jsp?ta=commspt
 
Please click this link for Help Desk, Guidelines/Member Agreement and the Question/Answer process.  https://www.experts-exchange.com/jsp/cmtyHelpDesk.jsp

Click you Member Profile to view your question history and please keep them updated. If you are a KnowledgePro user, use the Power Search option to find them.  

Questions which are LOCKED with a Proposed Answer but do not help you, should be rejected with comments added.  When you grade the question less than an A, please comment as to why.  This helps all involved, as well as others who may access this item in the future.  PLEASE DO NOT AWARD POINTS TO ME.

To view your open questions, please click the following link(s) and keep them all current with updates.
https://www.experts-exchange.com/questions/Q.20180059.html
https://www.experts-exchange.com/questions/Q.20221686.html
https://www.experts-exchange.com/questions/Q.20234788.html
https://www.experts-exchange.com/questions/Q.20246190.html
https://www.experts-exchange.com/questions/Q.20256943.html
https://www.experts-exchange.com/questions/Q.20257803.html
https://www.experts-exchange.com/questions/Q.20257760.html
https://www.experts-exchange.com/questions/Q.20260496.html
https://www.experts-exchange.com/questions/Q.20263573.html
https://www.experts-exchange.com/questions/Q.20263541.html
https://www.experts-exchange.com/questions/Q.20266174.html
https://www.experts-exchange.com/questions/Q.20283765.html
https://www.experts-exchange.com/questions/Q.20288327.html
https://www.experts-exchange.com/questions/Q.20291180.html
https://www.experts-exchange.com/questions/Q.20291602.html


To view your locked questions, please click the following link(s) and evaluate the proposed answer.
https://www.experts-exchange.com/questions/Q.20155817.html
https://www.experts-exchange.com/questions/Q.20169826.html

*****  E X P E R T S    P L E A S E  ******  Leave your closing recommendations if this item remains inactive another seven (7) days.  If you are interested in the cleanup effort, please click this link https://www.experts-exchange.com/jsp/qManageQuestion.jsp?ta=commspt&qid=20274643 
POINTS FOR EXPERTS awaiting comments are listed here -> https://www.experts-exchange.com/commspt/Q.20277028.html
 
Moderators will finalize this question if in @7 days Asker has not responded.  This will be moved to the PAQ (Previously Asked Questions) at zero points, deleted or awarded.
 
Thank you everyone.
 
Moondancer
Moderator @ Experts Exchange
Thanks

I was not able to initially solve this
because I had nultiple copies of policy files

But I figured that out

Thanks for help