Tagged Questions
The reading-files tag has no wiki summary.
9
votes
5answers
3k views
Overwrite Line in File with PHP
What is the best way to overwrite a specific line in a file? I basically want to search a file for the string '@parsethis' and overwrite the rest of that line with something else.
6
votes
4answers
1k views
Reading a text file in Java
I want to read a text file containing space sepearted values. Values are integers.
How can I read it and put it in an array list?
Here is an example of contents of the text file:
1 62 4 55 5 6 77
...
5
votes
1answer
2k views
Using WPF Imaging classes - Getting image dimensions without reading the entire file
Link this post I want to be able to read an image files height and width without reading in the whole file into memory.
In the post Frank Krueger mentions there is a way of doing this with some WPF ...
2
votes
3answers
123 views
Reading file starting at end in MATLAB
I was wondering if anyone knows how to open and read from a file in MATLAB where you begin reading from the end of the file. The file is constantly being updated (at some nonconstant rate between ...
2
votes
4answers
167 views
How to get the Entire Function from a file
Ok, I'm reading through a file now, line by line. I know each functions name in the file, since it is defined elsewhere in an XML document. That is what should be this:
function function_name
...
2
votes
6answers
2k views
PHP: Fastest way possible to read contents of a file
Ok, I'm looking for the fastest possible way to read all of the contents of a file via php with a filepath on the server, also these files can be huge. So it's very important that it does a READ ONLY ...
1
vote
2answers
70 views
I'm having trouble reading a properties file using FileInputStream
I'm working on a web application, and I have created a properties file in package com.xx.yy. I need to read this file from a class in author package com.aa.bb
I have the folowing code:
try {
...
1
vote
3answers
130 views
Reading text files of unknown encoding in C++
What should I use to read text files for which I don't know their encoding (ASCII or Unicode)?
Is there some class that auto-detects the encoding?
1
vote
0answers
66 views
Getting file permission on read while using MMF
I have two processes. One writing in a memory mapped file using .NET 4 MemoryMappedFiles and the other reading the file using FileStream in .NET 3.5 (MONO). Everything works fine when I get the ...
1
vote
2answers
274 views
PL/SQL Oracle_home directory contents of listener.ora
I'm trying to write the contents of listener.ora to another file without hardcoding in the directory.
Originally it worked when I specified the directory as
...
1
vote
5answers
139 views
Performance of Reading from a file vs. an ArrayList
I have to use a thousands of data read off from a file, and use the data hundreds of times repetitively in order to train and test my AI algorthm. Right now, I have two possible solutions. One is to ...
1
vote
6answers
278 views
Is there a more efficient way of reading a formatted file in C than I have done?
I need to read in a formatted file that looks something like this.
Code: HARK
Name: Oscar
MRTE: Train
etc
At the moment my code looks like this.
FILE *file;
char unneeded[10];
char ...
0
votes
4answers
52 views
C++ file handling, is_open returning bad
If I include the if test in my code the error message is returned and I'm not sure why.
and when it's not used, my program get's stuck in a loop where it never reaches the end of the file. I don't ...
0
votes
4answers
98 views
can't write the last part of a txt file to cout using ifstream
The code below will print all of the text from the sample text file I'm using except for the last little snippet of it. I think this has something to do with the eof or the byte size I'm using not ...
0
votes
7answers
127 views
What are the best/simplest classes used for reading files in Java?
I haven't written a program, in Java, that reads files, for years...
What are the best/simplest classes used for reading files in Java? I'm interested in simple line processing.
0
votes
4answers
199 views
Python: Specify end-of-line format for reading files
I'm writing a Python script which processes a text file. I expect to process files generated from different people, working under different operating systems. Is there a nice way to figure out which ...
0
votes
1answer
547 views
how to read data from file into array? java
I need some help reading data from a txt file into my ArrayList. I know the code is pretty messy, but just try to take a look at it. The first part with the creating and putting the ArrayList into ...