Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am having an issue, where java is reading an array list from a YAML file of numbers, or strings, and it is interpreting the numbers as octal if it has a leading 0, and no 8-9 digit.

is there a way to force java to read the yaml field as a string?

code:

ArrayList recordrarray = (ArrayList) sect.get("recordnum");
   if (recordrarray != null) {
      recno = join (recordrarray, " ");
   }

HAVE ALSO TRIED:

Iterator<String> iter = recordrarray.iterator();
       if (iter.hasNext()) recno = " " +String.valueOf(iter.next());
       System.out.println(" this recnum:" + recno);
       while (iter.hasNext()){
          recno += ""+String.valueOf(iter.next()));

        System.out.println(" done recnum:" + String.valueOf(iter.next()));

       }

the input is such: 061456 changes to 25390 061506 changes to 25414 061559 -> FINE

it took a while to figure out what it was doing, and apparently this is a common issue for java,

ideas? thanks

edit: using jvyaml

yaml:

  22:
country_code: ' '
description: ''
insection: 1
recordnum:
  - 061264
type: misc

yaml loading:

import org.jvyaml.YAML;
Map structure = new HashMap();
structure = (Map) YAML.load(new FileReader(structurefn)); // load the structure file
share|improve this question
The code you're showing does not parse Strings into integers and is therefore not the code where your problem lies. – Michael Borgwardt May 3 '10 at 12:44
the data is not read any where else, aside from being loaded from the yaml and mapped to the "sect" hash. can you explain more what you mean? – recursive9 May 3 '10 at 12:59
"061456 changes to 25390" -- where's the code where this happens? – polygenelubricants May 3 '10 at 13:06
where i posted above, i can not find where it is making this translation, but the output of the print statements above indicate it. – recursive9 May 3 '10 at 13:14

1 Answer

up vote 0 down vote accepted

Where are you reading the file? The problem lies in where the file contents are being read. Most likeley the recordarray list contains integers, ie. they have alreadey been parsed. Find the place where the records are being read. Maybe you are doing something like this:

int val = Integer.parseInt(record);

Use this instead:

int val = Integer.parseInt(record, 10);
share|improve this answer
cant figure out how to format code in the comments.. :/ – recursive9 May 3 '10 at 13:10
It may be a big hash eventually, but something has to read the file and make that hash. Are you using a parsing library to read in the file? I'm guessing that's where your problem lies; perhaps one of your method calls has an incorrect parameter. – Chris May 3 '10 at 13:11
ok, the yaml file is a big hash, so to get this particular section out of it: ` Map sect = (Map) sections.get(s); ` then to get the array out of that section: ` ArrayList recordrarray = (ArrayList) sect.get("recordnum"); ` those are the only places its being read. – recursive9 May 3 '10 at 13:12
structure = (Map) YAML.load(new FileReader(structurefn)); // load the structure file is all that is happening – recursive9 May 3 '10 at 13:13
@recursive9: can you attach the relevant portion of the YAML file? It may be the case that the YAML already contains the "wrong" numbers. – polygenelubricants May 3 '10 at 13:19
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.