• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

recognize phone calls number

 
Ranch Hand
Posts: 430
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello.

Can I recognize phone calls numbers using java?
What libraries/api do you recommend me to take a look?

Thank you.
 
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what do you mean with "recognize"?

Do you mean find who a number belongs to? You'll need a database that maps phone numbers to people for that. Don't count on anything three, and forget about something worldwide.

Do you mean checking the format? That also determines on the country.

Either way, I think the intermediate forum is a better location. Moving.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Three?
 
Leandro Coutinho
Ranch Hand
Posts: 430
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Three? [2]

I just want to know the number that is calling.
 
Rob Spoor
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

David Newton wrote:Three?


Free. Can't I make a thinko once in a while?

Leandro: are we talking about a telephone system here? If so, which one?
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Leandro Coutinho wrote:I just want to know the number that is calling.


Can you explain in more detail what kind of program you are trying to write and how you think exactly it should work?

Right now we have no idea what you mean exactly. Do you want a regular expression to check whether a string contains a valid phone number? Or do you have a phone connected to a computer somehow, and when the phone rings you want the computer to see what number is calling? Or are you writing software on a phone with Java ME?

I've been in a project once where a client had a big telephone dispatch computer, which had a special API in Java you could use to recognise and route phone calls to employees.
 
Leandro Coutinho
Ranch Hand
Posts: 430
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rob Prime wrote:Free. Can't I make a thinko once in a while?

of course hehe :]

Jesper Young wrote:Or do you have a phone connected to a computer somehow, and when the phone rings you want the computer to see what number is calling?

exactly

I'll have a database with clients registred and when the phone rings the app will show the client's information, if he is already registred, of course, otherwise will show a screen to register the new user.
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's JTAPI if I'm not mistaken.
 
Leandro Coutinho
Ranch Hand
Posts: 430
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Clapham wrote:That's JTAPI if I'm not mistaken.


Thank you sir!! :thumbup:
 
reply
    Bookmark Topic Watch Topic
  • New Topic