Tagged Questions

13
votes
5answers
2k views

HTML5 offline storage. File storage? Directories and filesystem API

For storing data offline WebApp can use: session storage, "advanced version of cookies" key/value based Web Storage (AKA local/global/offline/DOM storage) sql-based Web SQL Database and Indexed ...
0
votes
0answers
197 views

Upload and create copy of file in local with Javascript html5 FileReader and Filewriter

This is a small part of my application, in this it wants to store a file in local with javascript. Put the file content like a string into a div. Create a new file with the content of the div. The ...
0
votes
3answers
75 views

Unable to write new lines to File

I have a bunch of strings that I'm writing to a file: private void writeScoreToFile(BlastScore result) { try{ FileWriter fstream = new FileWriter(getFilesDir() + ...
0
votes
0answers
197 views

Unable to Read/Write file by using javascript/ Phonegap

I am trying to read and write file "readme.txt" . readme file is in the same folder where the source file is. phonegap.1.0.0.js already included in index.html but shows me the errors like 1.Uncaught ...
0
votes
0answers
61 views

Saving text from a file into an array and writing the array to a different file Java

I am trying to read text from a file and turn that text into an array, and then print that array to a different file in the exact format that the text of the original file was in. I cannot use a try ...
0
votes
2answers
111 views

Error when trying to compile the program

I'm trying to run this code taken from Sun Java site (I didn't copy it, Looked at it and wrote it as it would help me to remember the code). import java.io.FileReader; import java.io.FileWriter; ...
0
votes
2answers
327 views

Android file management

i use the code below to write a file to the sd card and read the content of it: try { if (root.canWrite()) { File rootdir = Environment.getExternalStorageDirectory(); ...
0
votes
3answers
664 views

Read & Update filestream

I have a little utility that does a search of a number of files. I had to create it because both Google & Windows desktop searches were not finding the appropriate lines in files. The searching ...