hi,jappit,thank you for paying attention to my question.
Part of my code is as follow:
Code:
if(xmlHttp.readyState==4){
if (xmlHttp.status == 200 ||xmlHttp.status == 0){
alert(xmlHttp.responseText);
h=xmlHttp.responseText;}
}
xmlHttp.open("GET", src, false);
xmlHttp.send(null);
where src is the position of txt file,and xmlHttp is a ajax xmlHttpRequest.
I find xmlHttp.readyState only can rise to 3 on nokia N95/E63 by debugging,
that's to say,the request i sent is accepted,but the txt file doesn't been
analyzed correctly.
However,this problem doesn't happen on Nokia 5800,I guess maybe the operating system
of Nokia n95/e63 is of low level.
I want to know if there is other way to solve this problem.