当此线程运行时我遇到问题,因此我的应用程序崩溃了。我真的不明白,问题在哪里。
public void onClick(DialogInterface dialog, int which) {
//Searching with post request
BugSenseHandler.sendEvent("Search started");
new Thread(new Runnable() {
@Override
public void run() {
try {
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("find", etMedName.getText().toString()));
String prec = "";
if (cbPrecise.isChecked()) prec = "on";
else prec = "off";
nameValuePairs.add(new BasicNameValuePair("exact_match", prec));
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://mashkovsky.ru/tiki-listpages.php");
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse resp = client.execute(post);
String html = "";
html = EntityUtils.toString(resp.getEntity());
Document doc = Jsoup.parse(html, "http://mashkovsky.ru/tiki-listpages.php");
Element content = doc.getElementById("wrapper");
wView.loadData(content.outerHtml(), "text/html", "utf-8");
MainActivity.this.removeDialog(SEARCH_DIALOG);
}
catch (ClientProtocolException e) {e.printStackTrace();}
catch (IOException e) {e.printStackTrace();}
}
}).start();
}
我在Eclipse中的LogCat窗口中没有堆栈跟踪,但是BugSense显示了这个简短的堆栈跟踪
java.lang.NullPointerException
at ru.pathdevel.mashkovsyreference.MainActivity$1$1.run(MainActivity.java:106)
at java.lang.Thread.run(Thread.java:856)
UPD:问题解决了。一切都在初始化。我试图使用main.xml布局小部件,而不是searchdialog.xml
答案 0 :(得分:1)
只需在Runnable的run方法中放置一个断点,调试应用程序,检查变量的值。一个似乎是空的。
我特别专注于:
此外,您是否检查过您的HttpResponse是否包含内容?
顺便说一下,自API级别13以来,不推荐使用removeDialog。我建议使用支持库中的DialogFragment。
答案 1 :(得分:0)
etMedName
为空或etMedName.getText()
为空。所以你可以这样做:
@Override
public void run() {
if(etMedName==null || etMedName.getText()==null) return;
...
}