2
我總是得到這個錯誤我不知道如何解決(android.os.networkonmainthreadexception)
public class FlightAvailabityGoActivity extends ListActivity {
String[] monthName = {"Jan", "Feb",
"Mar", "Apr", "May", "Jun", "Jul",
"Aug", "Sep", "Oct", "Nov",
"Dec"
};
date userDate=new date();
int DepDay=userDate.getDays();
int DepMonth=userDate.getMonths();
bean beanz=new bean();
private TextView fromToTextView;
Calendar calendar = new GregorianCalendar();
String am_pm;
String TAG="from";
private TextView from,to;
languages lang=new languages();
String En_Ar=lang.getLang();
Element dest;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
try{
Log.v(TAG, "in go activity " +TAG);
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.listplaceholder_flightavailabity);
if(En_Ar.equals("arabic"))
{
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title_flightavailabity_ar);
// from=(TextView)findViewById(R.id.fromText);
// from.setText(" من ");
// to=(TextView)findViewById(R.id.toText);
//to.setText(" إلى ");
Log.v(TAG, "1 " +TAG);
}
else
{
Log.v(TAG, "1 " +TAG);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.window_title_flightavailabity);
}
////
Bundle extras = getIntent().getExtras();
String FromCity = extras.getString("from");
String ToCity = extras.getString("to");
Log.v(TAG, "from city after moving " +FromCity);
Log.v(TAG, "to city after moving " +ToCity);
ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
ArrayList<HashMap<String, String>> mylist1 = new ArrayList<HashMap<String, String>>();
Log.v(TAG, "2 " +TAG);
//String xml = XMLfunctions.getXMLFlightAva(FromCity,ToCity);
String xml=XMLfunctions.getXMLFlightAva(FromCity,ToCity); // error is here
Log.v(TAG, "3 " +TAG); // this will not display
xml=xml.trim();
Log.v(TAG, "4 " +TAG);
我紅這件事,我明白它如何使用互聯網,但我不知道該如何解決呢? ,你可以看到我在XML功能類讀取HTTP GET XML,它在那裏的每一件事墜毀
我一定要改變 字符串XML = XMLfunctions.getXMLFlightInfo(FromCity)類的字符串這裏返回XML;
其相同的方法,
String xml=XMLfunctions.getXMLFlightAva(FromCity,ToCity);
這是
public class XMLfunctions {
String TAG;
public final static Document XMLfromString(String xml){
Document doc = null;
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
try {
DocumentBuilder db = dbf.newDocumentBuilder();
InputSource is = new InputSource();
is.setCharacterStream(new StringReader(xml));
doc = db.parse(is);
} catch (ParserConfigurationException e) {
System.out.println("XML parse error: " + e.getMessage());
return null;
} catch (SAXException e) {
System.out.println("Wrong XML file structure: " + e.getMessage());
return null;
} catch (IOException e) {
System.out.println("I/O exeption: " + e.getMessage());
return null;
}
return doc;
}
/** Returns element value
* @param elem element (it is XML tag)
* @return Element value otherwise empty String
*/
public final static String getElementValue(Node elem) {
Node kid;
if(elem != null){
if (elem.hasChildNodes()){
for(kid = elem.getFirstChild(); kid != null; kid = kid.getNextSibling()){
if(kid.getNodeType() == Node.TEXT_NODE ){
return kid.getNodeValue();
}
}
}
}
return "";
}
////////////////////////
public static String getXMLFlightInfo(String Y_or_T){
String line = null;
String TAG="TAG";
date userDate=new date();
int DepDay=userDate.getDays();
int DepMonth=userDate.getMonths();
try {
DefaultHttpClient httpClient = new DefaultHttpClient();
// HttpPost httpPost = new HttpPost("http://p-xr.com/xml");
//HttpGet httpPost=new HttpGet("http://10.128.11.206:9080/mobile/FlightSchdIphoneServlet?depCity="+fromCity+"&arrCity="+toCity+"&day="+DepDay+"&month="+DepMonth+"");
//HttpGet httpPost=new HttpGet("http://mysv.net.sa/Web/mobile/FlightAvailIphoneServlet?depCity=JED&arrCity=RUH&day=29&month=11&submit=+GO+");
HttpGet httpPost=new HttpGet("http://10.131.13.43:9080/onlineSMS/xmlFlightInfo.html");
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
line = EntityUtils.toString(httpEntity);
} catch (UnsupportedEncodingException e) {
line = "<array status=\"error\"><msg>Can't connect to server</msg></array>";
} catch (MalformedURLException e) {
line = "<array status=\"error\"><msg>Can't connect to server</msg></array>";
} catch (IOException e) {
line = "<array status=\"error\"><msg>Can't connect to server</msg></array>";
}
return line;
}
我是否只在oncreate()下添加上面的代碼,以及如何在if語句中使用xmlfunction方法,或者對於我的問題沒有抱歉,但我是 – user950003
@ user950003的新手,此代碼只需要在您的應用程序啓動後運行一次,最好的地方是在您調用super.onCreate()之後並且在進行網絡操作的任何調用之前立即在MainActivity.onCreate()中。 – yorkw
更新了你的答案,請幫忙 – user950003