Go Back   CodingForums.com > :: Server side development > Java and JSP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-16-2004, 05:11 PM   PM User | #1
VietBoyVS
New Coder

 
Join Date: Jan 2004
Posts: 61
Thanks: 0
Thanked 0 Times in 0 Posts
VietBoyVS is an unknown quantity at this point
JAVA Applet: write to file

Code:
import java.io.*;

public class WriteIt {
  public boolean writeFile(String text, String fileID) {
    try {
      File file = new File(fileID);
      FileWriter fWriter = new FileWriter(file);
      fWriter.write(text);
      fWriter.close();
      return true;
    } catch(IOException e) {
      return false;
    }
  }
}
Welcome to DrJava.
> WriteIt a = new WriteIt();

> a.writeFile("AAAAAAAAAAAAXXX","C:\\folder 1\\x x\\dfjs.txt")

true

> a.writeFile("AAAAAAAAAAAAXXX","C:\\Documents and Settings\\Admin\\Desktop\\dfjs.txt")

true

> a.writeFile("AAAAAAAAAAAAXXX","dfjs.txt")

The above class works fine, and that is what I expected.

Should these to work for JApplet too? sinc I call these to write it to my "C:\\folder 1\\a.txt" for testing. no success

any help?
VietBoyVS is offline   Reply With Quote
Old 09-18-2004, 05:40 PM   PM User | #2
shmoove
Regular Coder

 
Join Date: Dec 2003
Posts: 367
Thanks: 0
Thanked 0 Times in 0 Posts
shmoove is an unknown quantity at this point
Writing to the local file system would be a violation of the applet's security model. You might be able to accomplish it with a signed applet. But you're better off just saving the file on the server.

shmoove
shmoove is offline   Reply With Quote
Old 09-18-2004, 06:49 PM   PM User | #3
VietBoyVS
New Coder

 
Join Date: Jan 2004
Posts: 61
Thanks: 0
Thanked 0 Times in 0 Posts
VietBoyVS is an unknown quantity at this point
how do a signed the applet?

If we have a web server, we can run servlet for free?
VietBoyVS is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:16 PM.


Advertisement
Log in to turn off these ads.