Giriş
Şu satırı dahil ederiz. Soyut bir sınıftır
asCharSource metoduŞu satırı dahil ederiz. Soyut bir sınıftır
import com.google.comon.io.ByteSource;
Şöyle yaparız
try {
ByteSource byteSource = Files.asByteSource(new File(filePath));
Iterator<String> lines = byteSource.asCharSource(defaultCharset()).lines().iterator();
while (lines.hasNext()) {
...
}
} catch (IOException e) {
...
}
Hiç yorum yok:
Yorum Gönder