Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Java Help > Re: problem: se...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 15 Topic 16050 of 16269
Post > Topic >>

Re: problem: security using IDE's appletviewer

by bH <bherbst65@[EMAIL PROTECTED] > May 6, 2008 at 09:14 PM

On May 6, 1:19=A0am, Roedy Green <see_webs...@[EMAIL PROTECTED]
>
wrote:
> On Mon, 5 May 2008 06:49:23 -0700 (PDT), bH <bherbs...@[EMAIL PROTECTED]
>
> wrote, quoted or indirectly quoted someone who said :
>
> >That said, I have looked at Canadian Mind Products
> > > P words > policy
>
> >The instructions =A0say to use:
>
> >grant {
> >permission java.security.AllPermission;
> >};
>
> you have to correct the right file. =A0Your IDE may be using a different
> JVM.
>
> Find all the .policy files on your machine and fix them.
>
> That's a fairly dangerous thing to do. =A0That turns off all security
> for all apps anywhere.
> --
>
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com

Hi Knute,
You wrote "If you jar up your Applet, access the
image file with; getImage(getClass().getResource
("fname.jpg"));

The applet is correctly jar'd along with the image
and shows as expected when the jar is opened.
I have tested to see that it does work.

I do not know what, if anything, goes into the ()
of getImage(getClass().getResource())
to exctract only the image from the jar by itself,
so that the image can go into
another program in the same folder.


im****t java.awt.*;
im****t java.applet.Applet;
im****t java.awt.Image;


public class ImageAppletBriefX extends Applet
  {
  private Image ioStream;
  private String errorMessage =3D null;
  public void init() {
    try
      {
      // the jar containing the image is
      //"TestLoadImage.jar"
      // the image file in the jar is "JBsm.JPG"
      ioStream =3D getImage(getClass().getResource());
      // << the line in question is above
      repaint();
      }
    catch (Exception netProblem )
      {
      errorMessage =3D "Could not reach image";
      }
    }


  public void paint( Graphics display)
    {
    if ( errorMessage =3D=3D null )
      display.drawImage( ioStream, 0, 0, this );
    else
      display.drawString( errorMessage, 10, 10 );
    }
  }

Thanks for your help up to this point

bH

Hi Roedy,
I no longer desire to change the policy files.
your advice "That's a fairly dangerous thing to do.  That turns off
all security
for all apps anywhere" is well taken.

bH
 




 15 Posts in Topic:
problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-05 06:49:23 
Re: problem: security using IDE's appletviewer
Mark Space <markspace@  2008-05-05 09:26:16 
Re: problem: security using IDE's appletviewer
Knute Johnson <nospam@  2008-05-05 15:02:05 
Re: problem: security using IDE's appletviewer
Roedy Green <see_websi  2008-05-06 05:19:44 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-06 21:14:28 
Re: problem: security using IDE's appletviewer
Knute Johnson <nospam@  2008-05-06 22:41:20 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-06 23:15:05 
Re: problem: security using IDE's appletviewer
Knute Johnson <nospam@  2008-05-07 09:26:35 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-07 12:52:20 
Re: problem: security using IDE's appletviewer
Knute Johnson <nospam@  2008-05-07 13:09:04 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-07 19:12:12 
Re: problem: security using IDE's appletviewer
Knute Johnson <nospam@  2008-05-07 22:16:30 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-07 23:20:54 
Re: problem: security using IDE's appletviewer
Lew <lew@[EMAIL PROTEC  2008-05-08 06:47:22 
Re: problem: security using IDE's appletviewer
bH <bherbst65@[EMAIL P  2008-05-08 04:29:24 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Jul 26 5:06:18 CDT 2008.