Hi All,
I am reading the FIX file in my project and storing the value in DB.
I’m able to read the tag which is there one time in a file.
ex-
File myObj = new File(“C:/Users/wakthar/Downloads/test/test.txt”);
BufferedReader br= new BufferedReader(new FileReader(myObj));
String fixMessage;
while ((fixMessage=br.readLine())!=null) {
//reading file through quickfix.MessageUtils;
MessageUtils.getStringField(fixMessage, 9);
Till this is fine.
However, there a few tag which are appearing many times in a FIX file, I got to know they are valid.
Example of tag are-
Tag# Tag Name
448 PartyID
447 PartySourceID
452 PartyRole
Now, I would need help to understand how can i read this tag (Wanted to read 2nd occurrence of tag 448), Do we have any utility class.?.
Can anyone please help me on this.?
Thank you so much in Advance.
Thnx,
Waseem