473,385 Members | 1,983 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Please help with File IO

Hello,

I have a text file I'm attempting to parse. There are about 50 fixed width
fields in each line / row. For example (shortened for brevity):

W1234Somebody East 101110001111010101
E1235Someone Else West 010111001001010101

I'm having problems pulling these fields into structures, in order to be
able to access each individually. I am currently opening as a sequential
file. Is there a better way?

My structure looks something like:

struct data{
char area[1];
char empNumber[4];
char name[16]
char region[5];
char options[20];
}

int index = 0;
data user[100];

I would like to read the entire file into memory. Please tell me if I'm
going about this the wrong way. So far after reading the file in, I'm
unable to access any individual items (ie. user[index].area) Also should
I stick with a sequential file, or should I consider binary access (seems
like it may be easier to address individual elements)?

(I don't want to include too many details here, but will be happy to provide
whatever is needed).

Thank you in advance,
Brian
Jul 22 '05 #1
2 1662
"Brian" <bk****@hotmail.com> wrote in message news:3d**************************@posting.google.c om...
Hello,

I have a text file I'm attempting to parse. There are about 50 fixed width
fields in each line / row. For example (shortened for brevity):

W1234Somebody East 101110001111010101
E1235Someone Else West 010111001001010101

I'm having problems pulling these fields into structures, in order to be
able to access each individually. I am currently opening as a sequential
file. Is there a better way?

My structure looks something like:

struct data{
char area[1];
char empNumber[4];
char name[16]
char region[5];
char options[20];
}

int index = 0;
data user[100];

I would like to read the entire file into memory. Please tell me if I'm
going about this the wrong way.
The information you provide does not permit such a conclusion.
Diagnosing "The wrong way" would have to be based on your
requirements, unstated so far. Your approach is going to present
difficulties if the format changes, but I presume you know that.
So far after reading the file in, I'm
unable to access any individual items (ie. user[index].area)
I cannot translate "I'm unable to access" into a familiar fact.
Do you mean "I can access individual fields but their values
differ from what I expected."? Or is it something else? If
the former: What did you get? What did you expect? And
why did you expect it? If the latter, please elaborate.
Also should
I stick with a sequential file, or should I consider binary access (seems
like it may be easier to address individual elements)?
I have not heard of "sequential file" in connection with the
standard C or C++ libraries. If you are distinguishing that
from files opened in binary mode, then, from the fact that
you claim to be dealing with a "text file", it is clear that you
do not want binary mode. The "not binary" mode is often
known as "text mode". Files are considered a sequential
series of bytes whether binary or not.
(I don't want to include too many details here, but will be happy to provide
whatever is needed).
It would probably help to see the call you use to read in
the file, together with enough data to know what values
the call parameters have.

You have given few clues as to how records are separated
in your input file. Are line-ends used for that? If so, your
attempt to blast in a whole series of records fails to account
for the space taken by the record separators. If not, your
example is misleading.
Thank you in advance, Good luck.
Brian

--
--Larry Brasfield
email: do***********************@hotmail.com
Above views may belong only to me.
Jul 22 '05 #2
Hi Larry,

I just posted my code and a sample of the data as a follow-up to my
other post: "Best way to access this File?". I do apologize for the
post - I realize I didn't do a good job in posing the question.

Thanks!
Brian

"Larry Brasfield" <do***********************@hotmail.com> wrote in message news:<BM***************@news.uswest.net>...
"Brian" <bk****@hotmail.com> wrote in message news:3d**************************@posting.google.c om...
Hello,

I have a text file I'm attempting to parse. There are about 50 fixed width
fields in each line / row. For example (shortened for brevity):

W1234Somebody East 101110001111010101
E1235Someone Else West 010111001001010101

I'm having problems pulling these fields into structures, in order to be
able to access each individually. I am currently opening as a sequential
file. Is there a better way?

My structure looks something like:

struct data{
char area[1];
char empNumber[4];
char name[16]
char region[5];
char options[20];
}

int index = 0;
data user[100];

I would like to read the entire file into memory. Please tell me if I'm
going about this the wrong way.


The information you provide does not permit such a conclusion.
Diagnosing "The wrong way" would have to be based on your
requirements, unstated so far. Your approach is going to present
difficulties if the format changes, but I presume you know that.
So far after reading the file in, I'm
unable to access any individual items (ie. user[index].area)


I cannot translate "I'm unable to access" into a familiar fact.
Do you mean "I can access individual fields but their values
differ from what I expected."? Or is it something else? If
the former: What did you get? What did you expect? And
why did you expect it? If the latter, please elaborate.
Also should
I stick with a sequential file, or should I consider binary access (seems
like it may be easier to address individual elements)?


I have not heard of "sequential file" in connection with the
standard C or C++ libraries. If you are distinguishing that
from files opened in binary mode, then, from the fact that
you claim to be dealing with a "text file", it is clear that you
do not want binary mode. The "not binary" mode is often
known as "text mode". Files are considered a sequential
series of bytes whether binary or not.
(I don't want to include too many details here, but will be happy to provide
whatever is needed).


It would probably help to see the call you use to read in
the file, together with enough data to know what values
the call parameters have.

You have given few clues as to how records are separated
in your input file. Are line-ends used for that? If so, your
attempt to blast in a whole series of records fails to account
for the space taken by the record separators. If not, your
example is misleading.
Thank you in advance,

Good luck.
Brian

Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Dan | last post by:
Hello, I am trying to read and write to an Excel file via my Java applet. I have done so successfully on several simple Excel files that simply had data cells without many complicated equations...
3
by: JGBNS via DotNetMonster.com | last post by:
Hi, I am new to this forumand I apologize as i am not a .net programmer but we have a program being developed by a .net programmer. Nowwe have run into an ftp snag and I think it is part ftp and...
4
by: pshindle | last post by:
DB2 Team - I just downloaded and unzipped the new Fixpack 9 for DB2 ESE V8 for Windows (FP9_WR21350_ESE.exe). I then burned the unzipped Fixpack files to a CD. I proceded to install this...
25
by: n3crius | last post by:
hi, i just got a web host with asp.net , seemed really cool. aspx with the c# or vb IN the actual main page run fine, but when i use codebehind and make another source file ( a .cs) to go with...
2
by: trihanhcie | last post by:
I m currently working on a Unix server with a fedora 3 as an os My current version of mysql is 3.23.58. I'd like to upgrade the version to 5.0.18. After downloading from MYSQL.COM the package on...
22
by: KitKat | last post by:
I need to get this to go to each folders: Cam 1, Cam 2, Cam 4, Cam 6, Cam 7, and Cam 8. Well it does that but it also needs to change the file name to the same folder where the file is being...
22
by: Amali | last post by:
I'm newdie in c programming. this is my first project in programming. I have to write a program for a airline reservation. this is what i have done yet. but when it runs it shows the number of...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.