Reputation: 133
I am developing one application in which i want to know how to retrieve APN name so please help me.Thanks in advance
Upvotes: 4
Views: 791
Reputation: 921
You can get Apn setting as following code:
ServiceRecord st = new net.rim.device.api.servicebook.ServiceRecord();
System.out.println("APN Setting: "+st.getAPN());
Upvotes: 1