| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
9 comments so far (post your own) View All Comments Latest 10 Comments:how can allot the permission for the java applet user can't open html page using command prompt so how can user grant permission when open html page directly.
my applet running when i use "appletviewer -J-Djava.security.policy=test.policy http://test.html" but when i run http://test.html directly then got exception (access denied).
please give me solution.
Posted by Ritesh Shrivastava on Thursday, 04.9.09 @ 11:20am | #86668
Hi there,
Hope this content will help people on writing to file in embedded applet.
The link: http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html
It's called SignedApplet.
Try and tell others your experiences.
Thanks.
Posted by htn on Wednesday, 12.17.08 @ 05:51am | #82869
Hi there,
Hope this content will help people on writing to file in embedded applet.
It's called SignedApplet.
Try and tell others your experiences.
Thanks.
Posted by htn on Wednesday, 12.17.08 @ 05:50am | #82868
Hi guys,
This code will not run when embedded to web browsers.
Pls give another solutions.
Thanks.
Posted by htn on Sunday, 12.14.08 @ 20:58pm | #82752
Hi,
This is a great article, and worked like a charm in a very first attempt. Even though I dont have a lot of experience in Applet am able to write to file succesfully.
I do have one further request, Can you please let me know if this applet can be called with out the AppletViewer (i mean directly from html). I am currently able to load WriteFile.html, but the write request did'twork(though it did not give any error).
Currently the AppletViewer is taking care of associating the policy file, and I dont know how I can associate the WriteFile.policy with the applet call.
Thanks
Posted by venu on Thursday, 10.9.08 @ 13:46pm | #80976
i have tried to access data from MS Access but i am unable to access it from applet. To access data from MS Access in applet i have used same part of code as in frames but geting an error "access denied".. can you please guide me.
Posted by sam on Wednesday, 03.26.08 @ 15:15pm | #54388
Hi,
This is a great tutorial. I know this work in an applet viewer, but I am trying to get it to work TRHOUGH a web browser. Your READ an applet works fine through a broswer, but this write one does not seem too.
Any ideas how I can write to a file, but using the applet through a web browser?
Thanks!
Posted by Michael on Thursday, 02.14.08 @ 01:35am | #48195
thnaks man for this wonderful tutorial........u solved a long standing problem of mine.....keep up the good work
Posted by sudip on Saturday, 10.20.07 @ 19:05pm | #34459
Hi there!
Is it possible to write a file from applet using Url connection as we can see at reading?
I have tried the folowing lines:
URL url = new URL(getCodeBase(), "name.txt");
URLConnection urlConn = url.openConnection();
urlConn.setDoOutput(true);
urlConn.setUseCaches(false);
OutputStream out = urlConn.getOutputStream();
The problem is the getOutputStream().
It is throws UnknownServiceException: protocol doesn't support output
Do you have any idea to handle this exception?
Thank you for your help in advance.
I am looking forward your answer.
Best Regards,
Szabolcs
Posted by Szabolcs Szlavik on Sunday, 09.30.07 @ 23:34pm | #30794