我正在使用一个FOR循环,它被设计为在每次迭代时再次启动线程。该线程用于从文本文件中提取数据。
错误发生在错误是“illegalthreadstateexception线程已经启动”的第二次迭代中。我已尝试使用GetTopics.stop,即使它已被弃用但尚未修复错误。我还使用GetTopics.join来确保代码不会同时运行。
private void addTabs(ActionBar actionBar)
{
ActionBar.Tab tab1=actionBar.newTab();
tab1.setText("All");
tab1.setTabListener(this);
actionBar.addTab(tab1);
for (addTabPosition = 2; addTabPosition < 11; addTabPosition++) {
Thread GetTopics = new Thread();
GetTopics.start();
try {
GetTopics.join();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(addTabMessage.contentEquals("FileNotFound")){
Log.e("skiper", "file skiped" + addTabPosition);
}else{
switch (addTabPosition) {
case 2:
ActionBar.Tab tab2=actionBar.newTab();
tab2.setText(addTabTitle);
tab2.setTabListener(this);
actionBar.addTab(tab2);
break;
case 3:
ActionBar.Tab tab3=actionBar.newTab();
tab3.setText(addTabTitle);
tab3.setTabListener(this);
actionBar.addTab(tab3);
break;
case 4:
ActionBar.Tab tab4=actionBar.newTab();
tab4.setText(addTabTitle);
tab4.setTabListener(this);
actionBar.addTab(tab4);
break;
case 5:
ActionBar.Tab tab5=actionBar.newTab();
tab5.setText(addTabTitle);
tab5.setTabListener(this);
actionBar.addTab(tab5);
break;
case 6:
ActionBar.Tab tab6=actionBar.newTab();
tab6.setText(addTabTitle);
tab6.setTabListener(this);
actionBar.addTab(tab6);
break;
case 7:
ActionBar.Tab tab7=actionBar.newTab();
tab7.setText(addTabTitle);
tab7.setTabListener(this);
actionBar.addTab(tab7);
break;
case 8:
ActionBar.Tab tab8=actionBar.newTab();
tab8.setText(addTabTitle);
tab8.setTabListener(this);
actionBar.addTab(tab8);
break;
case 9:
ActionBar.Tab tab9=actionBar.newTab();
tab9.setText(addTabTitle);
tab9.setTabListener(this);
actionBar.addTab(tab9);
break;
case 10:
ActionBar.Tab tab10=actionBar.newTab();
tab10.setText(addTabTitle);
tab10.setTabListener(this);
actionBar.addTab(tab10);
break;
}
}
}
}
答案 0 :(得分:3)
首先,一个线程不能运行两次。如果要并行运行2或再次运行它,则需要创建一个新的线程对象并运行它。
其次 - 如果你执行thread.start后紧跟一个thread.join,那么该线程是没有意义的。我意识到这可能只是调试代码,但如果不是,那么你在这里遇到了一些架构问题。