Can anybody give the sample code to read and write the into file using JavaScript?
|
|
For completeness, the OP does not state he is looking to do this in a browser (if he is, as has been stated, it is generally not possible) However javascript per se does allow this; it can be done with server side javascript.
Edit: That link was to the Sun docs that now have been moved by Oracle. To keep up with the times here's the node.js documentation for the FileSystem class: http://nodejs.org/docs/v0.4.8/api/fs.html#file_System Edit(2): You can read files client side now with HTML5: http://www.html5rocks.com/en/tutorials/file/dndfiles/ |
|||||||||
|
|
No. Browser-side javascript doesn't have permission to write to the client machine without a lot of security options having to be disabled |
|||||||||||||
|
|
here's the mozilla proposal http://www-archive.mozilla.org/js/js-file-object.html this is implemented with a compilation switch in spidermonkey, and also in adobe's extendscript. Additionally (I think) you get the File object in firefox extensions. rhino has a (rather rudementary) readFile function https://developer.mozilla.org/en/Rhino_Shell for more complex file operations in rhino, you can use java.io.File methods. you won't get any of this stuff in the browser though. For similar functionality in a browser you can use the SQL database functions from HTML5, clientside persistence, cookies, and flash storage objects. |
||||
|
The future is here! The proposals are closer to completion, no more ActiveX or flash or java. Now we can use: You could use the Drag/Drop to get the file into the browser, or a simple upload control. Once the user has selected a file, you can read it w/ Javascript: http://www.html5rocks.com/en/tutorials/file/dndfiles/ |
|||
|
|
|
This Javascript function presents a complete "Save As" Dialog box to the user who runs this through the browser. The user presses OK and the file is saved. Edit: The following code only works with IE Browser since Firefox and Chrome have considered this code a security problem and has blocked it from working.
Invoke the function:
|
|||||||||||||||
|
|
If you are using JScript (Microsoft's Javascript) to do local scripting using WSH (NOT in a browser!) you can use I think you can access that same object in IE if you turn a lot of security settings off, but that would be a very, very bad idea. |
|||
|
|
|
For Firefox:
See https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO For others, check out the TiddlyWiki app to see how it does it. |
|||
|
|
|
You can't do this in any cross-browser way. IE does have methods to enable "trusted" applications to use ActiveX objects to read/write files, but that is it unfortunately. If you are looking to save user information, you will most likely need to use cookies. |
|||||
|
|
use signed java applet... look at video on http://trix.exofire.net/ |
|||
|
|
|
|||||
|
|
You cannot do file i/o on the client side using javascript as that would be a security risk. You'd either have to get them to download and run an exe, or if the file is on your server, use AJAX and a server-side language such as PHP to do the i/o on serverside |
|||
|
|
|
You'll have to turn to Flash, Java or Silverlight. In the case of Silverlight, you'll be looking at Isolated Storage. That will get you write to files in your own playground on the users disk. It won't let you write outside of your playground though. |
|||
|
|
|
To create file try
Create your directory in the C drive because windows has security against writing from web e.g create folder named "tmp" in C drive. |
|||||
|
|
New ActiveXObject doesn't work in firefox or chrome; I've not tested in IE. So nowadays is impossible to write in a file from javascript. |
||||
|
|
