how to open jad or jar files
By rakesh506
@rakesh506 (6)
India
2 responses
@anjuscor (1266)
• India
24 Jan 07
1. Write a simple Hello application.
2. Compile it.
3. Run it
4. Dump it in PDA.
5. See the output.
one way to do this - I am guessing in J2ME environment
public void makeCall()
{
.......
if (phone_number.length() == 0)
return ;
try
{
if (midlet.platformRequest ("tel:" + phone_number) == true)
{
// MIDlet must Exit before the call will be made !
}
}
catch (ConnectionNotFoundException e)
{
// Device don't support OutCalling !
Util.debug ("Error Making Outcall");
}
}