Writing a .properties file into client machine using jsp

Hi,I want to create a .propertis file into client machine using jsp.is it possible.please give me an example if is possible.Thanks Pankaj Singh
[185 byte] By [pankajsinghsachana] at [2007-11-26 22:53:52]
# 1
Hi pankaj,While u create a file give the file name as u need...and then upload to the client machine
Chellama at 2007-7-10 12:17:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Create it in a StringBuffer and finally write it to file using FileWriter.
BalusCa at 2007-7-10 12:17:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
hi,i want to write a file into client machine not in the server.any idea about it.
pankajsinghsachana at 2007-7-10 12:17:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
You can't (thank god). Just stream it as a download file ;)
BalusCa at 2007-7-10 12:17:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

you cannot write a file on client's machine, otherwise there would be major security issue. Any web page that u browse is opened under strict security.

Anyways if you want to do that read Java Web Start stuff. When u open a site having JWS it gives you a security popup, if u accept it then it will give some permissions to itself and then you can do whatever you want on clients mahine.

But please note JWS is not a HTML page rather it's a downloaded java code though user gets an impression that he is on web.

Kunal_Shuklaa at 2007-7-10 12:17:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...