Split Lines : LineNumberReader « File Input Output « Java






Split Lines

    
import java.io.IOException;
import java.io.LineNumberReader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;

/*
 *  soapUI, copyright (C) 2004-2009 eviware.com 
 *
 *  soapUI is free software; you can redistribute it and/or modify it under the 
 *  terms of version 2.1 of the GNU Lesser General Public License as published by 
 *  the Free Software Foundation.
 *
 *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
 *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
 *  See the GNU Lesser General Public License for more details at gnu.org.
 */


public class Utils {

  public static final String NEWLINE = System.getProperty( "line.separator" );



  public static boolean isNullOrEmpty( String str )
  {
    return str == null || str.length() == 0 || str.trim().length() == 0;
  }


  public static List<String> splitLines( String string )
  {
    try
    {
      ArrayList<String> list = new ArrayList<String>();

      LineNumberReader reader = new LineNumberReader( new StringReader( string ) );
      String s;
      while( ( s = reader.readLine() ) != null )
      {
        list.add( s );
      }
      return list;
    }
    catch( IOException e )
    {
      // I don't think this can really happen with a StringReader.
      throw new RuntimeException( e );
    }
  }
}

   
    
    
    
  








Related examples in the same category

1.Create LineNumberReader from FileReader
2.Using the LineNumberReader to read a text file line by line
3.Line Number IO
4.Use LineNumberReader class to read file
5.Convert lines into the canonical format, that is, terminate lines with the CRLF sequence.