Code:
     // String for line input
        String iLine="";
            

               

          // Begin While loop, loop it up
          while (in.available() !=0) { 
       
                // grab line from file and place into temp storage 
                iLine = in.readLine();
                                           
                model.addElement(iLine);
                
                
  
           
          } // end while
iLine = in.readLine(); is giving a data input deprecated warning, how do I fix it? Im not getting any blank lines, I want those blank lines.

Thanks