vote up 3 vote down star

I didn't think it was possible for client side applications to access the harddrive? How can this application do it?

Can a signed Java applet get access to your peripherals? I know that flash can...

flag

2 Answers

vote up 9 vote down check

The Facebook uploader is a Java applet, which requires your approval before allowing access to your PC.

link|flag
Can a signed Java applet get access to your peripherals? I know that flash can... – DevDevDev Jul 24 at 0:46
1  
A signed Java applet can do anything a standalone Java application can do. So yes, you can print, etc. – kibibu Jul 24 at 0:57
vote up 2 vote down

It's possible for CLIENT side apps to access your local disk, but not SERVER side. The client side is executing on the local machine after all.

So, for example, a PHP/ASP/JSP/etc. script can't access your files, but a Javascript or Java applet potentially can(after being accepted by any security implemented to prevent malicious client side scripts from accessing your files; usually in the form of an 'are you sure you really want to let this script do this?').

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.