Tagged Questions
The file-read tag has no wiki summary.
4
votes
3answers
118 views
Ocaml - Files and parsing
How to read contents from file in ocaml? Specifically how to parse them?
Example :
Suppose file contains (a,b,c);(b,c,d)| (a,b,c,d);(b,c,d,e)|
then after reading this, I want two lists containing ...
3
votes
8answers
191 views
How to Read an Entire file to a String using C#
What is the quickest way to read a text file into a string variable?
I understand it can be done in several ways, such as read individual bytes and then convert those to string. I was looking for a ...
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
5answers
3k views
Java FileInputStream ObjectInputStream reaches end of file EOF
I am trying to read the number of line in a binary file using readObject, but I get IOException EOF. Am I doing this the right way?
FileInputStream istream = new FileInputStream(fileName);
...
2
votes
3answers
44 views
How to run php code from file_get_contents or file in a function
I am designing my own MVC pattern to ease the process of creating homepages. My templating system needs my controller class to output my views. This means I have to output the file through a php ...
2
votes
2answers
660 views
Android: Reading from DataInputStream works in emulator but not on device
I am working on a simple AudioTrack example which reads in a PCM file then plays it back. It works great on the android emulator, but on my test phone it fails when reading in the data with the ...
2
votes
1answer
977 views
Delphi: how to efficently read a big binary file, converting it to hexadecimal for passing it as a varbinary(max) parameter?
I need to convert a binary file (a zip file) into hexadecimal representation, to then send it to sql-server as a varbinary(max) function parameter.
A full example (using a very small file!) is:
1) ...
2
votes
3answers
494 views
How to read lines from a text file one by one with Power Point VBA code?
This code will read a line from a text file:
set file = CreateObject("Scripting.FileSystemObject").OpenTextFile("c:\number.txt", 1)
text = file.ReadLine
MsgBox text
How can I make it read ...
1
vote
2answers
78 views
Algorithm for copying files over network efficiently
I know there are several programs out there that will sync files over the network. Non of them do what I have been thinking of. Let me explain what I want to achieve...
In my network several ...
1
vote
6answers
110 views
PHP Cannot Read External File
I am trying to read an external file, hosted on another server, but am having issues.
Here, I identify the variables:
$variable1 = "test";
$variable2 = "testing";
Here, I identify the URL to read:
...
1
vote
4answers
144 views
How to determine 'word' size in Python
I need to know the number of bytes in a 'word' in Python. The reason I need this is I have the number of words I need to read from a file; if I knew the number of bytes in a word, I can use the ...
1
vote
1answer
40 views
Opening a .bsm file
I am trying to read the contents of a pascal.bsm file. What I am basically interested in is the system calls included in the file. I dont know how to open and read the file.
The file I'm trying to ...
1
vote
3answers
186 views
How can you read a file line by line in Javascript?
I'm writing a web-app for the iPad that will be loading data from a text file. (A sample data set is around ~400 kb). I have everything set up except the file reading. The way I have set up my code, ...
1
vote
4answers
531 views
reading android raw text file
I have a words.txt file which I have placed in my res/raw folder. The words in the file are separated by space. I'm having a hard time writing the Android/Java code to read the file word by word. Can ...
1
vote
1answer
218 views
'a' char appended when reading unicode text from txt file in android
Hello I am trying to read a UTF-8 encoded txt files with Hebrew chars on my android application, and now after managing doing for some reason the 'a' char is always appended at the beginning of the ...
1
vote
5answers
218 views
Reverse word problem - program stuck in input loop?
I am trying to solve the reverse word problem. My solution works, and even skips blank lines. However, after all the lines of a file are read, the program gets stuck in a loop, constantly accepting ...
1
vote
1answer
959 views
Read file from Spring based web application
I am developing a Spring based JMS application which will be deployed as a web application. It has no servlet part except the web.xml with listener which loads the Spring context. When JMS listener ...
1
vote
3answers
473 views
Working with files and utf8 in PHP
This is driving me crazy.
Lets say I have a file called foo.txt encoded in utf8:
aoeu
qjkx
ñpyf
And I want to get an array that contains all the lines in that file (one line per index) that have ...
1
vote
2answers
129 views
C# acting weird when reading in values from a file to an array
This is the structure of my file:
1111111111111111111111111
2222222222222222222222222
3333333333333333333333333
4444444444444444444444444
5555555555555555555555555
6666666666666666666666666
...
1
vote
3answers
744 views
Read multiple strings from a file C++
I need to read different values stored in a file one by one. So I was thinking I can use ifstream to open the file, but since the file is set up in such a way that a line might contain three numbers, ...
1
vote
5answers
368 views
With Perl, how do I read records from a file with two possible record separators?
Here is what I am trying to do:
I want to read a text file into an array of strings. I want the string to terminate when the file reads in a certain character (mainly ; or |).
For example, the ...
1
vote
3answers
651 views
Reading PDF file to get tabular data in structured format,
I have to read a pdf file which contains a table with several columns. Using iTextSharp I am able to read the file but I get bunch of non-formatted text. I am not able to structure the data so that I ...
1
vote
3answers
655 views
Why does my Perl if condition always evaluate to true?
In Perl, I need to read a .conf file that contains either a 0 or a 1. If the value is one, I need to execute whatever is in the if statement. Here is what I have now:
open(CONF, ...
0
votes
2answers
80 views
Getline to String Copies newline as well
I am reading a file line by line and adding each line to a string. However the string length increases by 1 for every line which I believe is due to newline character. How can I remove it from being ...
0
votes
2answers
50 views
c# saving settings while reading settings
I have a method which save settings to file. This method is called if value of dateTimePicker changed. But I have in Form_Load loading settings -> I read value from file and assign it with ...
0
votes
1answer
71 views
insert string read from a file to a linked list
LIST *list;
list = createList();
FILE *file = fopen("test.txt","r");
char line[50];
char* token;
while(fgets(line,sizeof(line),file))
{
token = strtok(line," ,:=");
while (token != NULL)
...
0
votes
3answers
99 views
Android: DB4O Problems
I'm trying to populate a listviewactivity's list with objects returned from an DB40 database, but my app keeps crashing and I'm not entirely sure why.
It would help if I knew how to read LogCat and ...
0
votes
0answers
79 views
How read attributes in a word document file using PHP?
I am developing an website, that collect word files, that has to be uploaded by users. Its include Windows word document and Linux word document also.
I want to read the contents and its attribute of ...
0
votes
3answers
125 views
Java batch processing
I will read 2000 files and do some works on them with java. So I think I should use batch processing. But How could I do ? My system is Windows 7.
0
votes
1answer
24 views
Read list of files, and rewrite to master list
I have a directory which has say 10 .txt files. Open the directory using:
$dir_handle = @opendir($path) or die("Unable to open $path");
I need to be able to read the files names of the text ...
0
votes
1answer
156 views
JavaScript XMLHttpRequest syntax error
I am new to javascript and have some data stored in a txt file that I want to use on my webpage.
However when I send an XmlHttpRequest to get the text file firefox throws a syntax error on the first ...
0
votes
1answer
60 views
Return values from XDocument with events
I wrote a class ReasXML the basically read only XML files. You see I worked withe events.. Now the problem is I want to use the result of lsTags or I want the values of my XML file. The basic thought ...
0
votes
1answer
102 views
Read binary file from a position in ASP.NET
I want to read a binary file from a particular position. I am using the following code but that is not working.
FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read);
...
0
votes
0answers
296 views
Read CHDK RAW image files into MATLAB
I'm trying to read RAW files created by the Canon Hack Developer's Kit (CHDK). They are 10-bit per sample, Bayer mosaiced RAW files, and while the extension is CRW, they are not Canon Raw files. They ...
0
votes
0answers
270 views
Video/image/text files compression in Java
How can we read a video file to compress it using some algorithm (e.g.Huffman) in Java?
Are there differences between reading video, image or text files?
Should the file be read character by ...
0
votes
0answers
165 views
PHP - populating arrays from a TEXT file
I have a text file , say chart.php . Right now, I am opening the file
$file= fopen('graph.txt', 'r') or die("can't open file");
It's contents look like this ... xyz, 0, 22, 12, 33, ...
0
votes
2answers
124 views
Need help with Reading File Input than Calculating!
I am have a real hard time with this program i have to write.
The program has to
Read in from the file
Name
Asking Price
Sale Price
Amount still owed on Mortgage
Print out AND write to a file a ...
0
votes
3answers
112 views
How to read Lengthy text File Efficently?
What if you have a big text file that has many entries in it you have to get those and save them to List is there any faster way to do that rather than traditional way as in my code
/// ...
0
votes
5answers
234 views
Gathering the contents of a .txt file as a string, C++
I currently have a little program here that will rewrite the contents of a .txt file as a string.
However I'd like to gather all the contents of the file as a single string, how can I go about this? ...
0
votes
3answers
530 views
Printing char pointer in C - I keep getting bad formatting
I am reading a line from a file containing the names of people, first line contains names of males, and seconds line contains names of females. Then I want to store these names in two arrays, one for ...
0
votes
1answer
240 views
C++ problem with string stream istringstream
I am reading a file in the following format
1001 16000 300 12.50
2002 24000 360 10.50
3003 30000 300 9.50
where the items are: loan id, principal, months, interest ...
0
votes
1answer
1k views
Read a file until a character in C
Say I have a file with the format:
key1/value1
key2/value2
key3/value3
....
Say I have an array to hold these values:
char *data[10][10]
How would I read this file and get key1, key2, and key3 ...
0
votes
1answer
164 views
How to read values from file. tokenizer
I have a file in which each line contains two numbers. The problem is that the two number are separated by a space, but the space can be any number of blank spaces. either one, two, or more. I want to ...
0
votes
4answers
236 views
File-read into div through ajax. I'm missing something small I think!
I'm doing something very simple, and yet it's not working.. maybe I'm missing something.
I need to read a text file, through ajax, and into a div. I can easily write to the file through ajax, but not ...
0
votes
3answers
266 views
Ruby Reads Different File Sizes for Line Reads
I need to do something where the file sizes are crucial. This is producing strange results
filename = "testThis.txt"
total_chars = 0
file = File.new(filename, "r")
file_for_writing = nil
while (line ...
-1
votes
2answers
86 views
Create my own check sum algorithm [closed]
I know it is always better to use check sum algorithms that people already invented. I want to be able to compare if two files are the same by performing the check-sum. The files are in two different ...
-1
votes
3answers
73 views
Advanced .Csv parse - Survey answer file?
Ok firstly I'd just like to point out that I'm aware of parsing .csv files using commas or tab spaces etc. I still have a problem however and I'm a little stuck.
What I'm trying to do is build an ...
-1
votes
2answers
7k views
C-programming ftell fseek fread, read size of a file
I have a file. I read the size of file. Then I loop reading two bytes at a time until I get to the end of the file. After every read operation I increment the current position by 2, however the ...
-2
votes
1answer
55 views
Reading the content of a css file using Java
I am trying to read a css file, find out the css classes and their definition and then save it in a csv file with its class name and description. Using Java, the following I have css file, common.css.
...
-2
votes
1answer
138 views
How to compare an ASCII value
Ok, I want to save the ASCII value of a letter on a variable, how can I do this??
for example :
r ASCII variable = 82
main()
{
character = "character read from a file";
variable= "r ascii"; ...