import java.util.Scanner; import java.io.FileInputStream; import java.io.FileNotFoundException; public class TestFile { public static void main(String[] args) { Scanner fileIn = null; try { fileIn = new Scanner(new FileInputStream("score.txt")); } catch (FileNotFoundException e) { System.out.println("File not found."); System.exit(0); } while (fileIn.hasNextLine()) { } fileIn.close(); } }
package com.java.myapp; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; /** Count: 59 Sum: 2985 Average: 50.00 **/ public class MyClass { public static void main(String[] args) { String path = "C:\\java\\thaicreate.txt"; File file = new File(path); int iCount = 0; double iSum = 0; try { BufferedReader br = new BufferedReader(new FileReader(file)); String line; while ((line = br.readLine()) != null) { iSum = iSum + Double.parseDouble(line); iCount++; } br.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.println("Count = " + iCount); System.println("Sum = " + iSum); System.println("Average = " + iSum/iCount); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง