/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author ICI Makati */ import java.io.*; public class read { /** * @param args the command line arguments */ public static void main(String args[] )throws IOException { String thisLine; String[] fullText = new String[10]; int counter= 0; FileInputStream fis= new FileInputStream("sample.txt"); DataInputStream myInput= new DataInputStream(fis); while((thisLine= myInput.readLine()) !=null){ System.out.println(thisLine); counter++; fullText[counter] = thisLine; } } }