This is a sample .txt file:
item1
item2
myString
item3
item4
I created a class to find a string in a .txt file:
public static String lineToFind;
public static boolean lineFound;
public static void findLine() throws IOException{
try {
lineFound=true;
fstream = new FileInputStream("C:/Users/Franky/Documents/NetBeansProjects/JavaApplication5/src/Punteggi/squadre");
in = new DataInputStream(fstream);
br = new BufferedReader(new InputStreamReader(in));
lineToFind = "myString";
String strline;
while(br.readLine()!=null)
if(br.readLine()!=lineToFind){
lineaFound=false;
}
} catch (FileNotFoundException ex) {
Logger.getLogger(LeggiDaFile.class.getName()).log(Level.SEVERE, null, ex);
}
}
this class is used in another class, if the lineaFound=false;
private void saveButtonActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
findLine();
if(lineFound=true){
callFunction1();
}
if(lineFound=false){
callFunction2();
}
}
Now the problem is that callFunction2() is never called, even if "myString" is not included in the file. Easily the "false" condition never happens even if it has to happen!
Thanks
.equalsfor string comparison instead of==or!=– CarlosZ Mar 28 '11 at 17:43