私はこれでいくつかの問題を抱えています。ループPrintWriter
の外で動作しており、for
「Test1」と「Test2」を出力しますが、「example 1」を内部に出力しませんIf
デバッガーで確認したとおりにコード行が実行されます
File file = new File ("output.txt");
FileWriter wri;
try {
wri = new FileWriter(file);
PrintWriter writer = new PrintWriter(wri);
writer.println("Test1");
boolean result=false;
for(i=0;i<this.lung;i++){
for(j=0;j<this.lung;j++){
if(wordToFind.charAt(0)==mat[i][j]){
if((i>=wordLength-1)&&(results!=true))
if (wordToFind.charAt(1)==mat[i-1][j])
if(result=continue(i,j,i-1,j,1))
writer.println("example 1");
/*Same if as the above but with differente parameters are down here*/
}
}
}
}
writer.print("Test2");
writer.close();
} catch (IOException e) {
System.out.println("Error: " + e);
}