hi,
I design a j2me application that runs nokia 6630. this application uses platformrequest(), but when run this method, the mobilephone display
memory full.
this problem makes me crazy.
can anybody help me?
thanks in advance.
hi,
I design a j2me application that runs nokia 6630. this application uses platformrequest(), but when run this method, the mobilephone display
memory full.
this problem makes me crazy.
can anybody help me?
thanks in advance.
Do you have other applications running on the background?
Hartti
thanx hartti.Originally Posted by hartti
i am not sure. how can i confirm this!
byron lee
code like the following:Originally Posted by hartti
void launchURL(String url)
{
try
{
boolean isExist = platformRequest(url);
}
catch (Exception e)
{
handleException(e);
}
freeApp(true);
notifyDestroyed();
}
public void freeApp(boolean unconditional)
{
// need to do something, now do nothing
}
any problem??
I hope :
if url exists, close my application, then visit the specfied url.
thank you for any reply!
I got the way to seeing applications running in the background,as followed:
pressing the menu button down for two seconds. what i saw are two applications, one is telePhone, another is my application.
but this error still occours.
anybody help!!!!!!
regards
byron lee
now i crack it, thank u all.
this is my way:
step 1: install appman,fexplorer into a mobile phone
2:run my application, see how many memory is left.
you know, memory in 6630 that can be used is about 8M,my application
use more than 7M , when platformrequest() invoke web
application which need more than 1M memory, so memory full
occour!
3 optimize my application for example: reducing size of array.
move the local variable in loop, etc.
4 ok.
regards
byron lee