一行一行的读,每读一行统计一次。 int count = 0; File f = new File("你的文件"); InputStream input = new FileInputStream(f); BufferedReader b = new ...
www.google.com.tw