次のプログラムと、プロジェクトの src フォルダーに保存されているファイル「euler8.txt」がありますC:\Users\john\workspace\Euler1\src\euler8.txt
。実行しようとすると例外が発生Exception in thread "main" java.io.FileNotFoundException: euler8.txt (The system cannot find the file specified)
します。
private static void euler8() throws IOException
{
int current;
int largest=0;
int c =0;
ArrayList<Integer> bar = new ArrayList<Integer>(0);
File infile = new File("C:/Users/xxxxxxxx/workspace/Euler1/euler8.txt");
BufferedReader reader = new BufferedReader(
new InputStreamReader(
new FileInputStream(infile),
Charset.forName("UTF-8")));
try
{
while((c = reader.read()) != -1)
{
bar.add(c);
}
}
finally{reader.close();}
for(int i=0; i<bar.size(); i++)
{
current = bar.get(i) * bar.get(i+1) * bar.get(i+2) * bar.get(i+3) * bar.get(i+4);
if(largest<current)
largest = current;
}
}
私が今見ているものの画像 http://img163.imageshack.us/img163/7017/halpbk.png