Chong Kim

Greenhorn
+ Follow
since Feb 05, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Chong Kim

I create a in memory file from the server side (java.io.File file = new File("text.txt")) and then I with to pass that file to an applet that will write it to the client. I have a jsp that creates the file and also contains a button that when pressed, will load the applet and write the file to the client. Does anyone know how the applet can read the created file?
22 years ago
Is there a way to disable the 'browse' button on a from when I set <input type=file ...>
Thanks in advance.
I've modified the .java.policy file to read:

grant codebase "http://pckim.us.com:8600/html.* {
permission java.io.FilePermission "<<ALL FILES>>", "write";
};
I wrote an applet that writes to a file on my client machine but when I run it in Netscape I'm getting a "security checkfile" error. I was led to believe that all I had to do was modify the .java.policy file. Am I missing something here? Please help. Thank you.
22 years ago