1
我有一個JTable,我想根據難度級別顯示問題,程序正常執行,但問題是它只顯示一個難度級別(難題)我想根據難度級別查看所有問題?我需要總結JTable上的所有IF?或者我對IF有問題?如何根據難度級別顯示所有問題
public void actionPerformed(ActionEvent arg0) {
categorie=GestionCategorieDelegate.doFindCategorieById(PreparerTest.idCategorie);
System.out.println(categorie);
if(Facile.getText().length()!=0)
{
questions=GestionTestDelegate.doPrepareRandomTest(Integer.parseInt(Facile.getText()), categorie,"Facile");
}
else
{
}
if(Moyen.getText().length()!=0)
{
questions=GestionTestDelegate.doPrepareRandomTest(Integer.parseInt(Moyen.getText()), categorie, "Moyen");
}
else
{
}
if(Difficile.getText().length()!=0)
{
questions=GestionTestDelegate.doPrepareRandomTest(Integer.parseInt(Difficile.getText()), categorie, "Difficile");
}
System.out.println(questions);
initDataBindings();
}
列表問題;我必須這樣做? questions.addAll(問題);在所有的IF? –
Daly
我必須請幫助我我是一個Java和鞦韆上的初學者 – Daly
@Hovercraft全部的鰻魚你能幫我嗎? – Daly