473,508 Members | 2,490 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Arraylists

1 New Member
I have created a class and have four properties and I am reading the values from a CSV file and then assign them to the class properties and then trying to add the object to Arraylist.

But after the loop, the array list has got 5 items, but all items look the same!

Expand|Select|Wrap|Line Numbers
  1. // declaring the array list
  2.             ArrayList objClaimData = new ArrayList();
  3.  
  4.             // creating an instance of the class
  5.             clsClaimData datClaims = new clsClaimData();
  6.  
  7.             // declaring the variable for streamreader
  8.             string file_name = "D:\\Bhagavan\\My Documents\\Visual Studio 2010\\Projects\\ClaimsReserving\\ClaimsReserving\\claims.csv";
  9.             string textLine = "";
  10.             string[] colval = null;
  11.  
  12.             // opening the file using the streamreader
  13.             System.IO.StreamReader objReader;
  14.             objReader = new System.IO.StreamReader(file_name);
  15.  
  16.             // looping thru the text file until all lines are read and stored in the arraylist.            
  17.             while ((textLine = objReader.ReadLine()) != null)
  18.                 {
  19.                     colval = textLine.Split(',');
  20.  
  21.                     datClaims.Product = Convert.ToString(colval[0]);
  22.                     datClaims.OrginYear = Convert.ToInt32(colval[1]);
  23.                     datClaims.DevYear = Convert.ToInt32(colval[2]);
  24.                     datClaims.IncrementValue = Convert.ToDouble(colval[3]);
  25.  
  26.                     objClaimData.Add(datClaims);
  27.  
  28.                     Console.WriteLine(textLine);
  29.                 }
  30.  
What is wrong with the above ? Please help. I am new to C#.
Jun 3 '12 #1
1 2372
Aimee Bailey
197 Recognized Expert New Member
Hey there, the problem I believe is that you need to create an instance of clsClaimData for each line, this should help:

Expand|Select|Wrap|Line Numbers
  1.  // declaring the array list
  2.  ArrayList objClaimData = new ArrayList();
  3.  
  4.  // declaring the variable for streamreader
  5.  string file_name = "D:\\Bhagavan\\My Documents\\Visual Studio 2010\\Projects\\ClaimsReserving\\ClaimsReserving\\claims.csv";
  6.  
  7.  foreach(string line in File.ReadAllLines(file_name))
  8.  {
  9.     string colval = line.Split(',');
  10.  
  11.      // creating an instance of the class (per line).
  12.     clsClaimData datClaims = new clsClaimData();
  13.  
  14.     datClaims.Product = colval[0];
  15.     datClaims.OrginYear = int.Parse(colval[1]);
  16.     datClaims.DevYear = int.Parse(colval[2]);
  17.     datClaims.IncrementValue = double.Parse(colval[3]);
  18.  
  19.     objClaimData.Add(datClaims);
  20.     Console.WriteLine(line);
  21.  }
  22.  
All the best!

Aimee
Jun 4 '12 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
1082
by: Brandon Potter | last post by:
Trying to find the best way to find common entries in an x number of ArrayLists or arrays of integers. Curious if there is a method already available in .NET to do just this very thing. ...
0
1670
by: James | last post by:
I see that variations on this question have appeared before but I'm still completely stumped. I'm developing an application with a fairly robust graphics component for 3D rendering. I've written...
1
2588
by: godsella | last post by:
First i have two stored procedures, i have passed the values of each one into two different arraylists of dates. how can i compare the two arraylists of dates? Thanks in advance
5
2384
by: drdave | last post by:
I would like to have ten arraylists created within a loop.. is there a conversion or something I can do to acheive this.. pseudo: Dim counter As Integer = 0 Dim ArrName As ArrayList ...
0
1223
by: steve | last post by:
I'm looking for a code example how to compare the values in a given record in different arraylists two arraylists, two fields in each record, both defined as string I'm thinking that it's...
3
3186
by: steve | last post by:
I need to compare the value of a field in a row on an arraylist with the value of a field on a second arraylist I have this bit of code working for arrays but cant get it working for arraylists The...
4
1676
by: Andy in S. Jersey | last post by:
I would like to create an unknown number of Arraylists, meaning, I don't know how many I should create until runtime. I will be reading a table, and 0,1,2, or more fields have to be put into...
2
3996
by: Andy in S. Jersey | last post by:
I would like to create an unknown number of ArrayLists, that is I don't know that until runtime. Of course I can do this if I knew I needed two: ArrayList IntervalArray1 = new ArrayList();...
1
1758
by: Newbie19 | last post by:
I'm just learning java arrays/arraylists and was wondering what are the best books for learning java arrays/arraylists? I know practice is the best way to learn, but I have a hard time...
3
2050
by: =?Utf-8?B?Sm9zaFA=?= | last post by:
Hi All, I am attempting to compare values in two arraylists to make sure all the values are the same. I am running into trouble with my code if both arraylists compare okay up until a point and I...
0
7405
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7066
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7504
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5643
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4724
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3214
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3198
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
773
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
435
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.