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 11 of 15 Topic 16050 of 16204
Post > Topic >>

Re: problem: security using IDE's appletviewer

by bH <bherbst65@[EMAIL PROTECTED] > May 7, 2008 at 07:12 PM

On May 7, 4:09=A0pm, Knute Johnson <nos...@[EMAIL PROTECTED]
>
wrote:
> bH wrote:
> >> Yes. =A0You can specify many .jar files in the ARCHIVE parameter of
the=

> >> APPLET tag. =A0Just separate them with commas.
>
> >> <html>
> >> =A0 =A0 =A0<head>
> >> =A0 =A0 =A0</head>
> >> =A0 =A0 =A0<body>
> >> =A0 =A0 =A0 =A0 =A0<applet archive=3D"test1.jar,test2.jar"
code=3D"test=
2.class"
> >> =A0 =A0 =A0 =A0 =A0 width=3D"640" height=3D"480">
> >> =A0 =A0 =A0 =A0 =A0</applet>
> >> =A0 =A0 =A0</body>
> >> </html>
>
> >> The HTML above loads both the test1.jar and test2.jar and runs the
clas=
s
> >> test2. =A0The code for test2.java is almost the same as test1.java.
>
> >> im****t java.applet.*;
> >> im****t java.awt.*;
>
> >> public class test2 extends Applet {
> >> =A0 =A0 =A0Image image;
>
> >> =A0 =A0 =A0public void init() {
> >> =A0 =A0 =A0 =A0 =A0image =3D
getImage(getClass().getResource("kittens.j=
pg"));
> >> =A0 =A0 =A0}
>
> >> =A0 =A0 =A0public void paint(Graphics g) {
> >> =A0 =A0 =A0 =A0 =A0g.setColor(Color.BLUE);
>
> >> =A0 =A0 =A0 =A0 =A0if (!g.drawImage(image,0,0,this))
> >> =A0 =A0 =A0 =A0 =A0 =A0 =A0g.drawString("Loading Image",10,20);
> >> =A0 =A0 =A0}
>
> >> }
>
> >> --
>
> >> Knute Johnson
> >> email s/nospam/linux/
>
> >> --
> >> Posted via NewsDemon.com - Premium Uncensored Newsgroup Service
> >> =A0 =A0 =A0 ------->>>>>>http://www.NewsDemon.com<<<<<<------
> >> Unlimited Access, Anonymous Accounts, Uncensored Broadband Access-
Hide=
 quoted text -
>
> >> - Show quoted text -
>
> > Hi Knute,
>
> > Sorry but I cannot put this away because I cannot understand
> > something.
> > You have the image in a ("kittens.jpg") in a jar that has the name
> > "KnutesTest1.jar" (I made that name up here for the discussion).
>
> > I am now going to run your "test2" and I use your program above that
> > is supposed to access "KnutesTest1.jar" to grab the image
> > "kittens.jpg".
>
> > Yet in "test2" there is no clue that I can see where it is find the
> > image
> > you referred in test2:
>
> > "image =3D getImage(getClass().getResource("kittens.jpg"));"
>
> > It can't grab resources that, I don't think, that
> > are not stated.
>
> > Can you please clarify?
>
> > TIA,
>
> > bH
>
> The answer is in the HTML file. =A0Note that both test1.jar and
test2.jar
> are listed in the ARCHIVE element of the APPLET tag. =A0The browser or
> appletviewer will load all .jar files listed there. =A0All classes and
> files in both .jar files are available to the applet. =A0In the HTML
above=

> I tell it to run the test2.class. =A0Does that explain it for you?
>
> --
>
> Knute Johnson
> email s/nospam/linux/
>
> --
> Posted via NewsDemon.com - Premium Uncensored Newsgroup Service
> =A0 =A0 =A0 ------->>>>>>http://www.NewsDem-
Hide quoted text -
>
> - Show quoted text -

Hi Knute,
Sorry to re****t that your latest gifts do not work: the image will not
be pulled out of
another jar.... plain and simple, not with the code that you wrote.

In summary the (test1.jar and test2.jar)  contain identical images and
making the test2.class to
look into test1.jar for the image, it shows nothing when the html page
shows the archive
to have both of the jars and even when I remove the second jar and
have only the
archive showing the first jar, and call for the test2.class to be
executed, no image
is displayed.

Also my research on the net shows nothing but confusion and
countless attempts to write something to get images out of the jars.

http://java.sun.com/docs/books/tutorial/deployment/jar/unpack.html
(comment: shows how to do it with the cmd.exe) my reaction "ugh"

http://forum.java.sun.com/thread.jspa?threadID=3D748643&messageID=3D4290284#=
4290284
(comment: Java Archive (JAR) Files - extracting to a certain
directory) instructions

http://forum.java.sun.com/thread.jspa?threadID=3D330269&messageID=3D1792680#=
1792680
(comment : topic  here is: I can't get some Images to load when they
are in jar files)

Knute,
Thanks again for your efforts.

I have used up my patience and possibly yours too.

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 Wed Jul 9 7:32:18 CDT 2008.