Comparer un texte avec un tableau java

Fermé
elhou - 20 avril 2010 à 22:47
Edwyn Messages postés 105 Date d'inscription vendredi 20 juin 2008 Statut Membre Dernière intervention 31 mars 2011 - 21 avril 2010 à 10:25
j'ai un prog qui faitla comparaison entre un fichier mots (existe dans le disque)et un tableau qui contiet des mots aussi tq il affiche le mots en commun esq cette instructionest juste?
...............................
................................
.................
String fichier ="C:\\Users\\ISMAIL\\Desktop\\client.txt" \\ emplacement du fichier
String mots[]; \\déclaraton du tableau
.......................................
................................
.............................
String[ ] tabMots = p.split(fichier);

{

if (fichier== mots[i] ); \\ ou je fait if(fichier.equals(mots[i]);

System.out.println ("mot commun " + i + " : " + mots[i]);




}

merci
A voir également:

1 réponse

Edwyn Messages postés 105 Date d'inscription vendredi 20 juin 2008 Statut Membre Dernière intervention 31 mars 2011 14
21 avril 2010 à 10:25
Salut,

si je comprend bien tu copie tout le text de ton fichier dans une string nommee fichier
puis apres tu regarde si fichier est egal a mots[i]

si tu veux savoir si mots[i] est contenu dans fichier c'est pas une comparaison d'egalite que tu dois utiliser mais plutot rechercher les occurence deta string dans le fichier...

int indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.


j'espere que ca repond a ta question
bye
0