Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for the best way of translating country codes to phone number prefixes. For example, SE should map to +46, NO to +47, etc. Any open source java library out there that does the job ?

share|improve this question

1 Answer

up vote 2 down vote accepted

I would take a look at Google's libphonenumber. There's a ton of stuff in there surrounding international phone numbers.

share|improve this answer
Thanks, I have looked at it, didn't find anything, but I may have overlooked something. Will look again. – Jan-Olav Eide Nov 21 '12 at 12:08
The country code info is obviously in there, so you may have to add in some functionality yourself (possibly feed back to the team too?). I realise it's not ideal :-( – Brian Agnew Nov 21 '12 at 12:22
Ah, getCountryCodeForRegion seems to do the trick, missing the +, though, but I can add that :-) – Jan-Olav Eide Nov 21 '12 at 12:41

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.