Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try running the code below and see if all of your entries are present:</p> <pre><code>for(String key: imenaZnaki.keySet()) { System.out.println("KEY: " + key + " VALUE: " + imenaZnaki.get(key)); } </code></pre> <p>I was able to run your code and your sample and get all 7 entries to pop up in there. See antiduh's comment if doesn't work correctly for you; you're probably running into an encoding issue with your string you're using in the get() call.</p> <p>This is run from OS X,</p> <p>Console output specifying UTF-8 as the format:</p> <pre><code>KEY: nevar_andrejev_kriz_zelezniska_proga_je_dvo_ali_vectirna VALUE: Andrejev kri? (?elezni?ka proga je dvo ali ve?tirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_dvo_ali_vectirna_2 VALUE: Andrejev kri? (?elezni?ka proga je dvo ali ve?tirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_enotirna VALUE: Andrejev kri? (?elezni?ka proga je enotirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_enotirna_2 VALUE: Andrejev kri? (?elezni?ka proga je enotirna) KEY: nevar_blizina_letaliske_steze VALUE: Bli?ina letali?ke steze KEY: nevar_blizina_obale VALUE: Bli?ina obale KEY: nevar_blizina_svetlobnih_prometnih_znakov VALUE: Bli?ina svetlobnih prometnih znakov </code></pre> <p><strong>UPDATE</strong> </p> <p>So this appears to be an issue the BOM(<a href="http://en.wikipedia.org/wiki/Byte_order_mark" rel="nofollow">http://en.wikipedia.org/wiki/Byte_order_mark</a>) being read. I originally re-saved the file as UTF-8, and it produced the output above. I then resaved the file with encoding "UTF-8 with BOM" and it produced this: </p> <pre><code>KEY: ???nevar_andrejev_kriz_zelezniska_proga_je_dvo_ali_vectirna VALUE: Andrejev kri?? (??elezni??ka proga je dvo ali ve??tirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_dvo_ali_vectirna_2 VALUE: Andrejev kri?? (??elezni??ka proga je dvo ali ve??tirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_enotirna VALUE: Andrejev kri?? (??elezni??ka proga je enotirna) KEY: nevar_andrejev_kriz_zelezniska_proga_je_enotirna_2 VALUE: Andrejev kri?? (??elezni??ka proga je enotirna) KEY: nevar_blizina_letaliske_steze VALUE: Bli??ina letali??ke steze KEY: nevar_blizina_obale VALUE: Bli??ina obale KEY: nevar_blizina_svetlobnih_prometnih_znakov VALUE: Bli??ina svetlobnih prometnih znakov </code></pre> <p>Notice the three ? characters at the front of the first line. Those are the BOM characters look like this in hex: EF BB BF. That is likely what was causing your issues with the first line. Try resaving the file without a BOM using a text editor like Notepad++ or SublimeText</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload