Hi Friends,
I'm developing device application in JAVA. I want to know how to get IMEI in java. Please help.
Regards,
Kalaiyarasi
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi Friends,
I'm developing device application in JAVA. I want to know how to get IMEI in java. Please help.
Regards,
Kalaiyarasi
It's hard to answer questions like this other than by pointing you to google. What have you tried? Where are you stuck? What are you confused about?
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
Hello.
When doing programming, in order to store a value we first need to decide the date type to be used. To decide the data type we need to look at the possible characters used in the value.
Based on the above statement can you think of storing IMEI?
syed.
Hi,
Here I am giving my sample code,
import com.nxp.atop.baseband.Baseband;
import com.nxp.telematics.otp.*;
public class sms
{
Otp otp = OtpFactory.getOtp();
System.out.println(" get IMEI");
IMEI imei = otp.getAtopIMEI();
System.out.println(" result : " + imei );
}
But I am getting baseband.Baseband,otp,IMEI cannot be resolved error.I don't know whether it is a version problem or jar file problem.If it is jar file problem means which jar file i have to configure.
Thanks and Regards,
Kalaiyarasi.
Sounds like a classpath problem. What is on your classpath?
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
It is not a classpath problem,it is a part of task,with out including above code jar file is created successfully.If include above code it giving compilation error
cannot find symbol
[javac] symbol : variable OtpFactory
[javac] location: class myListennerClass
[javac] Otp otp = OtpFactory.getOtp();
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!