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 Developing a Java ME Application. Here I am using WiFi Connection. Now My Question is how to get a particular WiFi Connections name using Java ME Code ?

My Requirement is for Nokia E5 Device only.

share|improve this question
1  
Have you tried IAP Info API ? – Vimal Dec 11 '11 at 21:54

2 Answers

up vote 3 down vote accepted

After doing much research work I found that this is not possible in Java ME Technology to fetch the WiFi Connection's Name.

However Similar Library would be com.nokia.multisim.networkid which returns Network ID and Network Short Name.

share|improve this answer

I Dont Think so it is 100% possible in J2ME and even though if it has worked and there is no guarantee that it will work on all J2ME devices which has Wifi connectivity.

most appropriate answer i have found , please go through it once.

" Much as I hate to put you through all that grief and then not have a simple answer, I don't have a simple answer.

The reason for that is because Java's networking model is based on TCP/IP, and the TCP/IP architecture is based on the idea that applications will neither know nor care about the hardware details of networking. A typical mobile device may contain several different network interfaces (WiFi, Bluetooth, Infrared, USB cable, and so forth), but when an app wants to contact another network node, the app doesn't know which of these interfaces is actually being used. And in fact, if the OS wants to do so, it can use more than one (in parallel) and/or switch interfaces in and out, based on routing criteria such as best measured data rates. Rather like how cell phones route phone calls.

So basic Java/JME won't know anything about WiFi.

However, there is an extension, specified as JSR 309 (http://jsp.org) that looks like it may help. It supports learning about and controlling the network interfaces themselves. The problem is that not all devices will implement this extension, so it will depend on what device(s) you are supporting. "

share|improve this answer
Please check my updation in question. – Lucifer Apr 23 '12 at 6:41
why to search JSR 309 on JSP site ? – Lucifer Apr 23 '12 at 6:49
its a suggestion given to get control over network interfaces and if you are targeting for Nokia e65 device only then have you tried with this IAP Info API from Nokia ? – Vijay YD Apr 23 '12 at 7:44
I tried that IAP but couldn't get success. – Lucifer Apr 23 '12 at 7:46
Can you share that piece of code and what error/exception are you getting ? – Vijay YD Apr 23 '12 at 7:47
show 3 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.