This is a discussion on How do I write a file from JavaScript? within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all...... How do I write a file from JavaScript? Thanks & Regards itbarota....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi all.... Writing a file from JavaScript is just as easy as writing a file from a Java applet. Your script cannot write files itself; it should call a Java applet's public method which will actually do all the dirty file writing work for you. The bad news is that 1. Writing is a privileged operation, and therefore your Java applet must be digitally signed in order to write files. 2. Applet signing for Internet Explorer is completely different from applet signing for Netscape Navigator. 3. Signed applets may not work properly in Netscape Navigator 3. 4. What's the worst, it's very insecure to put privileged operations in public methods of signed applets! If you publsh such an applet, a malicious code could easily subvert the applet's public methods, and you (the applet publisher/signer) will be sued for any damage! Therefore, nobody publishes scripts that write files via signed applets, although in versions 4 of both major browsers it's technically possible. Thanks..... |
| |||
| function WriteToFile() { try { var fso, s; fso = new ActiveXObject("Scripting.FileSystemObject"); s = fso.CreateFolder("C:\\test.txt", true); s.writeline("This is a test"); s.Close(); } catch(err){ var strErr = 'Error:'; strErr += '\nNumber:' + err.number; strErr += '\nDescription:' + err.description; document.write(strErr); } |
| |||
| function WriteToFile(sText) { var fso = new ActiveXObject("Scripting.FileSystemObject"); var FileObject = fso.OpenTextFile("C:\\LogFile.txt", 8, true,0); // 8=append, true=create if not exist, 0 = ASCII FileObject.write(sText) FileObject.close() } |
| |||
| function WriteToFile(sText) { var fso = new ActiveXObject("Scripting.FileSystemObject"); var FileObject = fso.OpenTextFile("C:\\LogFile.txt", 8, true,0); true=create if not exist, 0 = ASCII FileObject.write(sText) FileObject.close() } |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| JavaScript to include flash file in asp.net | kingmaker | ASP and ASP.NET Programming | 3 | 03-10-2008 03:20 AM |
| How do I write a clock program in JavaScript? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 10-12-2007 10:55 PM |
| How can I write Arabic characters in my Javascript? | Pvinothkumar | HTML, CSS and Javascript Coding Techniques | 1 | 09-14-2007 12:44 AM |
| How to Read and write txt file using C# | kingmaker | C# Programming | 2 | 08-25-2007 02:40 AM |
| What’s the difference between Response.Write() andResponse.Output.Write()? | prasath | ASP and ASP.NET Programming | 1 | 07-19-2007 03:56 AM |