Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
8
votes
4answers
234 views

Java - How to detect file deletion while writing to a file?

Our java program writes some important data into a file continuously. Now we want to thrown some exception or display some kind of error message on the console whenever the file (to which the java ...
8
votes
3answers
1k views

(java) Writing in file little endian

I'm trying to write TIFF IFDs, and I'm looking for a simple way to do the following (this code obviously is wrong but it gets the idea across of what I want): out.writeChar(12) (bytes 0-1) ...
6
votes
3answers
2k views

Create whole path automatically when writing to a new file

I want to write a new file with the Java FileWriter. I use it like this: FileWriter newJsp = new FileWriter("C:\\user\Desktop\dir1\dir2\filename.txt"); Now the dir1 and dir2 currently don't exist. ...
4
votes
7answers
72 views

Java text file size (before file is closed)

I am collecting full HTML from a service that provides access to a very large collection of blogs and news websites. I am checking the HTML as it comes (in real-time) to see if it contains some ...
4
votes
2answers
115 views

Writing multiline JTextArea to txt file

so I Have a JTextArea for user input and then when they click a button it writes it to a text file, I have both setLineWrap and setWrapStyleWord set to true for the JTextArea. I would like to write ...
3
votes
5answers
1k views

PrintWriter vs FileWriter in Java

Are PrintWriter and FileWriter in Java the same and no matter which one to use? So far I have used both because their results are the same. Is there some special cases where it makes sense to prefer ...
3
votes
3answers
374 views

Counting (and writing) word frequencies for each line within text file

first time posting in stack - always found previous questions capable enough of solving my prob! Main problem I have is the logic... even a pseudo code answer would be great. I'm using python to read ...
3
votes
3answers
296 views

Java I/O: How to append to an already existing text file

Hi I am having no problem writing to or appending to a file, the only problem is that as soon as I quit the program and then run it again, it creates a new file overwriting my original file. This is a ...
3
votes
8answers
4k views

flush in java.io.FileWriter

I have a question in my mind that, while writing into the file, before closing is done, should we include flush()??. If so what it will do exactly? dont streams auto flush?? EDIT: So flush what it ...
3
votes
4answers
2k views

Java FileWriter

I'm currently using FileWriter to create and write to a file. Is there any way that i can write to the same file every time without delete the contents in there? fout = new FileWriter( ...
2
votes
2answers
32 views

Why is my first .nextline in the loop skipped then not skipped the next time around? and how do I stop it from overwriting?

I needed to create a basic program to input text to a .txt document so I created this but I don't see why the first question is skipped when the program is first run. It doesn't happen if the first ...
2
votes
1answer
89 views

Assigning a custom icon to a Mac desktop element

I am writing an application in Swing that involves creating an Internet shortcut on the desktop for a particular site. It works fine in Windows. Mac allows me to create the shortcut, but does not ...
2
votes
2answers
106 views

write one big file or multiple small files

I'm wondering what is better in therms of performance: write in one big text file (something about 10GB or more) or use a subfolder system that will have 3 levels with 256 folders in each one, the ...
2
votes
3answers
144 views

Do I need to implement synchronized on writing data to a same file by using BufferedWriter and FileWriter?

I am working on Webmethods Integration Server. Inside there is a java service which is in form of a static java method for writing data to a log file (server.log) by using BufferedWriter and ...
2
votes
6answers
877 views

Save PNG Canvas Image to HTML5 Storage (JAVASCRIPT)?

I am developing a chrome extension. I open an image file in canvas, I apply some changes to it, then I am trying to save it to the HTML5 filesystem api. First I get the dataURL from the canvas: ...
2
votes
2answers
317 views

Java FileWriter only writing first line

I am working on a Java application that has a JTextArea for users to input text. It can be any amount of lines, however I am running into a problem with my FileWriter, where it's only saving the first ...
2
votes
0answers
2k views

New line writing to a file in Android

I am trying to write to a file the log of my application. I have created an method which appends a line to the end of the line. public static void write2Log(String s){ StringBuilder contents ...
2
votes
1answer
1k views

Force download for blob created with FileWriter in JavaScript

HTML5 introduces the FileWriter class. With this class you can make Blobs. (A File is an extension of a Blob.) With JavaScript you can make a Blob and for instance show it using the dataURL. Example: ...
2
votes
2answers
1k views

Writing to an already existing file using FileWriter Java

Is there anyway I can write to an already existing file using Filewriter For example when the user clicks a submit button: FileWriter writer = new FileWriter("myfile.csv"); ...
2
votes
8answers
821 views

In .Net using File.CreateText() also locks file, why?

I was using the CreateText method to create an empty file (as below) in "App1". Then tried to have another application write to that file but it failed b/c it was locked. It was not unlocked until I ...
2
votes
5answers
4k views

Java FileWriter overwrite

I have a piece of code that generates new data whenever there is new data available as InputStream . The same file is overwritten everytime. Sometimes the file becomes 0 kb before it gets written. A ...
1
vote
1answer
46 views

Dynamically add .xhtml file in webapp folder

I want to dynamically add new .xhtml files in the webapp folder of my project. It only works when i give the full path like, FileWriter fw = new ...
1
vote
2answers
46 views

how access to a file concurrently to add/edit/delete the data?

I want to create a text file, add data line by line into the file. If a data line already exist in the text file ignore it and make the file grow line by line.
1
vote
2answers
97 views

Using 'FileWriter' to Write to a Text File on an SD Card in Android

I've researched this problem for a while now and I've only found really complicated answers so I'm very confused. Keep in mind that I'm not an expert programmer so don't expect me to know a ton about ...
1
vote
1answer
77 views

Creating file in java

This may sound easy but I when debugging through this code it just stops debugging, can't work out if its throwing an exception or not. What am I doing wrong? Writer output = null; File file = new ...
1
vote
2answers
113 views

How to speed up/optimize file write in my program

Ok. I am supposed to write a program to take a 20 GB file as input with 1,000,000,000 records and create some kind of an index for faster access. I have basically decided to split the 1 bil records ...
1
vote
0answers
139 views

Can't see a file in Windows written by an android app on sd-card unless I “Force Close” the app

I wrote a file through my Android program like this: String file = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Files/hello.txt"; BufferedWriter writer = new BufferedWriter(new ...
1
vote
2answers
218 views

Unable to see file in Windows Explorer while it is visible in Android file browser

Through my Android program I wrote a file like this: String file = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Files/hello.txt"; BufferedWriter writer = new BufferedWriter(new ...
1
vote
1answer
339 views

Using the HTML5 FileWriter truncate() method?

I'm experimenting with the HTML5 File API, and I'm needing to use a method which I don't know enough about (simply because it's hardly documented anywhere). I'm talking about the FileWriter ...
1
vote
2answers
180 views

Java BufferedWriter performance

I need to create large test files—near 3 GB. So I try to write for start only string "1"—to check performance and correctness. FileWriter fstream = new FileWriter("c:/out.txt"); ...
1
vote
3answers
102 views

Unable to write some ascii values above to a file in java

I am writing a java code to write ASCII characters to a file. But when I try to write any character of ASCII value of more than 140 or less than 32 to a text file, I get a blank file. It does not ...
1
vote
3answers
235 views

Java File object's renameTo method deletes my file instead of renaming it. Vistax64

Trying to take one mp3 file and rename it using a string variable. For example, I have a classical music folder, C:/classical, and I want a song called vivaldi renamed to FourSeasons. I want to find ...
1
vote
3answers
123 views

java - Does FileWriter use a buffer? (it acts like it does in my example)

I am using FileWriter and I have noticed strange behavior. I buffer my collection myself and every x rows I use IOUtils.writelines(myList,"\n", writer ); It doesnt write to the file. I ...
1
vote
3answers
204 views

How do I get Java to write the contents of an ArrayList to a file once every minute?

Just a quick question about the above subject. Basically, I'm writing a piece of software which captures data from the network and writes it to an external file for further processing. What I want to ...
1
vote
1answer
184 views

Problem with FileWriter into multiple files in Java

I'm using java with freemarker to generate HTML files through the FTL (the template file) and XML. I got the result in multiple files but each file contains the whole result. I want each file to ...
1
vote
2answers
3k views

The system cannot find the path specified with FileWriter

I have this code: private static void saveMetricsToCSV(String fileName, double[] metrics) { try { FileWriter fWriter = new FileWriter( ...
1
vote
3answers
741 views

IOException on DataGridView writing to text file C#

Good morning all, I'm having a few problems with a method in my C# code that should enable a DataGridView to be saved to a .txt file. The code is as below: private void saveToTxt_Btn_Click(object ...
1
vote
3answers
307 views

Is it ok to use same file writer for writing different files

There's a loop where we get certain data. Depending on the data, file writer needs to write to different files. Is it a good practice?
0
votes
3answers
50 views

FileWriter and computing 12-hour based time in java?

I was asked to write a program that will input the employee's id number, time in and time out. The data would be written in a .txt file. I understand that im supposed to use FileWriter but might I ask ...
0
votes
0answers
35 views

HTML5 or JavaScript File Writer under Safari

Have an iOS app that accumulates lat/long references from button touches on UIWebView HTML page, then with each button touch rewrites a JavaScript that invokes Google Maps with an array of the ...
0
votes
1answer
37 views

Downloading file from DataURL in JavaScript

From this string we get from DataURL, what's the best way to download this as a file? So far what I got was using a basic window.open("myDataURL");, but I'm not able to change the file name in this ...
0
votes
2answers
78 views

How will append a utf-8 string to a properties file

How will append a utf-8 string to a properties file. I have given the code below. public static void addNewAppIdToRootFiles() { Properties properties = new Properties(); try ...
0
votes
2answers
37 views

Directory does not exist with FileWriter

I use FileWriter for create a file. I have an error Directory does not exist I think that FileWriter create the directory if it did not exist FileWriter writer = new FileWriter(sFileName);
0
votes
0answers
157 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
65 views

Text File “printing” in VB.NET from VB6

I'm porting an application from VB6 to VB.NET and have come across something that VB.NET doesn't like. The "Print #" function (whatever its real name is). The code is as follows: Open tmp For Output ...
0
votes
3answers
71 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
3answers
166 views

Unable to write to file in Android, Read-Only Filesystem

I am trying to write a file in Android. private void writeScoreToFile(BlastScore result) { try{ FileWriter fstream = new FileWriter(CaptureActivity.BLAST_SCORES,true); ...
0
votes
4answers
88 views

Filewriter and spaces?

I was asked to write an assignment wherein the user would be prompted to input a key and/or a value. So far, here is my code: import java.util.Scanner; import java.io.*; class bTree { //Fields ...
0
votes
0answers
184 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 ...

1 2