Sauter une ligne impossible

Fermé
Chloé - 25 janv. 2011 à 15:15
 Chloé - 25 janv. 2011 à 18:48
Bonjour,

VOila, je voudrais sauter une ligne dans une jlist mais c'est impossible alors que j'utilise bien : System.getProperty("line.separator");

Voici mon code :

public void btok_click()
		{
			Oeuvre nomtitre = (Oeuvre)jComboBoxNom.getSelectedItem();
		       if (nomtitre == null)
				{
					JOptionPane.showMessageDialog(null, "Sélectionnez un titre" );
					return;
				}
				System.out.println("Nom du titre sélectionnée : " + nomtitre);
			
	        		info.clear();
	        		String titre = jComboBoxNom.getSelectedItem().toString();
	        		rsOeuvreTitre = Select.ListeOeuvreTitre(titre);
	        		System.out.print(titre);
	        		
		    	try
		    	      {
		    	          while (rsOeuvreTitre.next())
		    	          {
		    	        	 String TITRE = "Les infos du titre est : " ;
		    	        	 System.getProperty("line.separator");
		    	             String NUMGROUPE = "- Numéro du groupe : " + rsOeuvreTitre.getString("NUMGROUPE");
		    	             String NOMGROUPE = "- Nom du groupe : " +  rsOeuvreTitre.getString("NOMGROUPE").trim();
		    	             info.add(TITRE);
		    	             info.add(NUMGROUPE);
		    	             info.add(NOMGROUPE);
		    	             jListNom.updateUI();
		    	             System.getProperty("line.separator");
		    	            }
		    	        System.out.println(info);
		    	        }
		    	        catch(Exception e)
		    	        {
		    	           System.out.println("Exception " + e.getMessage());
		    	        }
		    	        jComboBoxNom.setSelectedIndex(-1); 
		    	        jButtonRecherche.setEnabled(false);
		}


Merci
A voir également:

2 réponses

Mihawk Messages postés 4315 Date d'inscription mercredi 29 mars 2006 Statut Contributeur Dernière intervention 6 janvier 2015 846
25 janv. 2011 à 17:47
Hello,

À tout hasard, tu as tenté le \n (dans ta String ou juste après je ne sais plus, essaye les deux).
0
oui j'ai tout tenté mais je n'y arrive pas!!
Je commence a déprimé....
0