Tagged Questions
The filereader tag has no wiki summary.
16
votes
5answers
7k views
Do I need to close() both FileReader and BufferedReader?
I'm reading a local file using a BufferedReader wrapped around a FileReader:
BufferedReader reader = new BufferedReader(new FileReader(fileName));
// read the file
// (error handling snipped)
...
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 ...
12
votes
4answers
11k views
Difference between java.io.PrintWriter and java.io.BufferedWriter?
Please look through the below code,
// A.java
File file=new File("blah.txt");
FileWriter fwriter=new FileWriter(file);
PrintWriter pwriter=new PrintWriter(fwriter);
//B.java
File file=new ...
6
votes
1answer
695 views
HTML5 FileReader alternative
I need some help with HTML5. I have a script that loops through all the uploaded files and gets each file details. Currently I am using HTML5 techniques that include FileReader. The FileReader ...
5
votes
4answers
3k views
Java can't find file when running through Eclipse
When I run a Java application that should be reading from a file in Eclipse, I get a java.io.FileNotFoundException, even though the file is in the correct directory. I can compile and run the ...
5
votes
5answers
466 views
How to read a file from a jar file?
I have a file on a jar file; it's 1.txt for example
how can I call it ; my source code is :
Double result=0.0;
try {
File file = new File("1.txt")); //how get this file from a ...
4
votes
1answer
689 views
HTML5 FIle API: Security Error while reading a file
Problem solved, read comment
The third problem I have with the HTML5 File API:
I still use Chrome 12 on Mac OS X Snow Leopard and I'm still trying to read files with the HTML5 File API, but ...
4
votes
1answer
3k views
Chrome FileReader
Can someone give me an example of using the FileReader API go get contents of a file in chrome?
It seems to be returning undefined for me.
<!doctype html>
<html>
<script>
function ...
4
votes
7answers
4k views
How Can I Reset The File Pointer to the Beginning of the File in Java?
I am writing a program in Java that requires me to compare the data in 2 files. I have to check each line from file 1 against each line of file 2 and if I find a match write them to a third file. ...
4
votes
4answers
8k views
GZIPInputStream reading line by line
I have a file in .gz format. The java class for reading this file is GZIPInputStream.
However, this class doesn't extend the BufferedReader class of java. As a result, I am not able to read the file ...
3
votes
1answer
330 views
Reading files from clipboard in Javascript
In chrome, when I paste files into text areas, I end up with the path, e.g /home/antimatter15/sha1.js. The paste event includes a .clipboardData object, with stuff like the standard getData/setData ...
3
votes
3answers
538 views
reading a file using java scanner
One of the lines in a java file I'm trying to understand is as below.
return new Scanner(file).useDelimiter("\\Z").next();
The file is expected to return upto "The end of the input but for the ...
3
votes
2answers
1k views
Reading files within app bundle at runtime using Phonegap and Javascript
I've tried using the FileReader class but it only seems to allow access to files outside the app bundle -i.e. the documents folder. But I want to read files within the app bundle - for example ...
3
votes
3answers
1k views
Which API in Java to use for file reading to have best performance?
In my place where I work, used to have files with more than million rows per file. Even though the server memory are more than 10GB with 8GB for JVM, sometimes the server get hanged for few moments ...
3
votes
4answers
4k views
Python - How to edit hexadecimal file byte by byte
I want to be able to open up an image file and extra the hexadecimal values byte-by-byte. I have no idea how to do this and googling "python byte editing" and "python byte array" didn't come up with ...
2
votes
1answer
72 views
FileReader, crash in Chrome
I am trying to implement a file upload with dnd and FileReader for image preview.
It works quite good and also if i upload multiple files at ones.
But when i upload a second time images > ~1,6MB it ...
2
votes
1answer
62 views
JS file uploader with streaming, i.e. without loading the entire file into memory
Something like the one described on this MDN page, but without loading the file into memory, i.e. I'd like to be able to send the file in chunks using some streaming interface so that my client ...
2
votes
1answer
139 views
How to get progress when uploading file VIA XMLHttpRequest
I am wondering how to get the progress of a file upload using XMLHTTPRequest. In Firefox the onprogress method does not fire at all, and in chrome it only fires after the file has finished uploading.
...
2
votes
1answer
204 views
Why does Scala crash when reading my CSV?
The file is here
http://dl.dropbox.com/u/12337149/history.csv
I try to read the data as follows
for (line <- Source.fromFile(new File(file)).getLines) {
println(line)
}
I get the ...
2
votes
3answers
530 views
how to read text file in jtextarea in java swing
here is my code :
try {
String textLine;
FileReader fr = new FileReader("ad.txt");
BufferedReader reader = new BufferedReader(fr);
while((textLine=reader.readLine())!=null){
textLine ...
2
votes
5answers
148 views
Problem with Java FileReader
Hello I have this in my code
File file = new File("words.txt");
Scanner scanFile = new Scanner(new FileReader(file));
ArrayList<String> words = new ArrayList<String>();
...
2
votes
2answers
144 views
Is it possible to save a File object in LocalStorage and then reload a File via FileReader when a user comes back to a page?
For example, say the user loads some very large images or media files in to your web app. When they return you want your app to show what they've previously loaded, but can't keep the actual file data ...
2
votes
3answers
3k views
Fastest way to read a file line by line with 2 sets of Strings on each line?
What is the fastest way I can read line by line with each line containing two Strings.
An example input file would be:
Fastest, Way
To, Read
One, File
Line, By Line
.... can be a large file
There ...
2
votes
5answers
194 views
Reading a fixed number of chars with << on an istream
I was trying out a few file reading strategies in C++ and I came across this.
ifstream ifsw1("c:\\trys\\str3.txt");
char ifsw1w[3];
do {
ifsw1 >> ifsw1w;
if (ifsw1.eof())
break;
...
2
votes
3answers
667 views
Reading a file into a multidimensional array
I want to read in a grid of numbers (n*n) from a file and copy them into a multidimensional array, one int at a time. I have the code to read in the file and print it out, but dont know how to take ...
2
votes
2answers
506 views
BufferedReader seems to only read last line of file
I'm trying to write a method to take a multiline tab-delimited file and return the contents of that file as an arraylist of String arrays (each line is a String[], and each such String[] is an element ...
2
votes
3answers
430 views
Speed Up download time
I have 40 MB file in server and i am downloading my file using
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
...
2
votes
7answers
2k views
C# Multithreading File IO (Reading)
We have a situation where our application needs to process a series of files and rather than perform this function synchronously, we would like to employ multi-threading to have the workload split ...
2
votes
4answers
2k views
Android: Is it more efficient to use a text file or an XML file to store static data
I have some reference data in a text file (~5MB) that I want to use with might android application.
The file is of the format:
1|a|This is line 1a
1|b|This is line 1b
2|a|This is line 2a
2|b|This is ...
1
vote
1answer
45 views
File uploading via FileAPI
I need to read multiple files into a single function A. I need to use FileAPI for it.
But FileReader performs an asynchronous download.
Can I get the contents of all files at the end of function A ...
1
vote
0answers
12 views
File Writer illigal escape characters?
i dont know whats wrong with code. Im exporting things to a csv file (that works) now i want to add a file chooser so the user can choose where to save the csv file... but it doestn want to work... I ...
1
vote
1answer
114 views
HTML5 Object tag with base64 data content causes Chrome to crash
I am using the HTML5 FileReader to read a local file. I then want to immediately display the file contents within the browser, prior to uploading to the server.
I read the file, and attempt to ...
1
vote
1answer
63 views
Reading mixed types from a local file
I am trying to read a file type that has a mixture of integers, floats and strings using Javascript.
The file is drag-dropped then, with the File API, read as array buffer and wrapped with a ...
1
vote
1answer
63 views
Drag and Drop Upload - Funny Behaviour
Excuse the question title, couldn't think how to describe this..
Basically, using a few different scripts/tutorials, I have managed to get a working drag and drop, file upload feature together (for ...
1
vote
1answer
287 views
What to use instead of FileReader for Safari?
(Am new to web programming, so apologies for any lack of rudimentary knowledge.)
My page allows a user to select a file that is then read clientside & displayed in a textbox on the page. The ...
1
vote
1answer
86 views
Parsing a String from text file into a date
I'm trying to read a date out of a text file then parse the String into a date so I can read it into my array. I keep getting an error when I try Date date = sdf.parse (token.nextToken ());. What can ...
1
vote
1answer
256 views
Is it possible to clean memory after FileReader?
FileReader seems to consume all the memory as it is repeatedly used to preload multiple blobs, and never frees it. Any known way to force it to release consumed memory? Setting FileReader object and ...
1
vote
5answers
512 views
Netbeans FileReader FileNotFound Exception when the file is in folder?
so the problem is that I am having exception thrown each time I try to load the code below on NetBeans or Eclips, but when I try to run it thru TextMate everything works fine!
I tried to put the ...
1
vote
1answer
270 views
Android FileReader from R.raw.file
Really newbie question:
I have a .csv file that I need to read. I've put it in the raw folder. For convenience, Im' using the http://opencsv.sourceforge.net/ library for reading the file. The library ...
1
vote
1answer
443 views
Javascript previews with new FileReader API and DataURLs seem inefficient
I am using the new FileReader API to preview images before upload. This is done using DataURLs. But DataURLs can be massive if the images are large. This is especially a problem for me as the user ...
1
vote
5answers
231 views
Null pointer exception with FileReader
ok. So I get a wierd null pointer exception when I try to do FileReader fr = new FileReader(path);
Here is the call from the main method:
public static void main(String[] args) throws IOException {
...
1
vote
2answers
101 views
Is it possible to dispatch events on regular objects (not DOM ones)?
I just found out that FileReader dispatches events just as if it was a DOM element. Is it? I wonder if it's possible to create an object similar to FileReader, which doesn't have a representation in ...
1
vote
1answer
1k views
HTML5 File API: FileReader.readAsText() returns “undefined”
I use Chrome 12 on Mac OS X and I've included jQuery 1.6.1 within the document.
I try to read the contents of a file as text and save it in a data-object with the following function:
this.upload = ...
1
vote
3answers
1k views
Javascript FileReader detection in Safari
I'm aware of the fact that the FileReader Object is not available in Safari 5.0.5. I have a script that uses it and thought that i'd just be able to detect whether the object exists to run some ...
1
vote
2answers
334 views
evt.target.result is empty?
For some reason, in the following code, evt.target.result is empty. Why is that?
function drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var file = evt.dataTransfer.files[0];
...
1
vote
2answers
753 views
Converting image to binary array (blob) with HTML5
I am trying to use the 'FileReader' and 'File' APIs that are supported in HTML5 in Chrome and Firefox to convert an image to a binary array, but it does not seem to be working correctly on Chrome. I ...
1
vote
3answers
146 views
Why is the first line of a file note read with BufferedReader?
I guess this will sound crazy, but I am reading from a file, and it seems like it skips the first line of the file.
What is going on?
Here is the source:
private void loadFile(String ...
1
vote
1answer
2k views
image,onload event not working in chrome
I'm using html5 to create drag and drop image upload functionality. This works great for me in firefox but in chrome the image onload event only fires the first time. If I drag multiple images in ...
1
vote
4answers
425 views
Displaying first and last lines of Text File?
I have a GUI program that I'm using to navigate a text file. It's nothing too complex, just the ability to browse the file and add new information to it. However I would also like to be able to ...
1
vote
2answers
134 views
Is there a way to unload a file which has been loaded into memory from the File API's FileReader.readAsDataURL method in javascript?
I am writing a javascript application using the File API in Google Chrome. I am loading the files with the readDataAsURL method. I only need one file loaded at a time. So, each time I load a file, ...