io.advantageous.boon.core.IO.eachLine()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(143)

本文整理了Java中io.advantageous.boon.core.IO.eachLine()方法的一些代码示例,展示了IO.eachLine()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IO.eachLine()方法的具体详情如下:
包路径:io.advantageous.boon.core.IO
类名称:IO
方法名:eachLine

IO.eachLine介绍

暂无

代码示例

代码示例来源:origin: com.github.advantageous/boon-reflekt

private static void eachLine( String location, URI uri, EachLine eachLine ) throws Exception {
  try {
    FileSystem fileSystem = FileSystems.getFileSystem( uri );
    Path fsPath = fileSystem.getPath( location );
    BufferedReader buf = Files.newBufferedReader( fsPath, DEFAULT_CHARSET );
    eachLine( buf, eachLine );
  } catch ( ProviderNotFoundException ex ) {
    eachLine( uri.toURL().openStream(), eachLine );
  }
}

代码示例来源:origin: io.advantageous.boon/boon-reflekt

private static void eachLine( String location, URI uri, EachLine eachLine ) throws Exception {
  try {
    FileSystem fileSystem = FileSystems.getFileSystem( uri );
    Path fsPath = fileSystem.getPath( location );
    BufferedReader buf = Files.newBufferedReader( fsPath, DEFAULT_CHARSET );
    eachLine( buf, eachLine );
  } catch ( ProviderNotFoundException ex ) {
    eachLine( uri.toURL().openStream(), eachLine );
  }
}

代码示例来源:origin: io.advantageous.boon/boon-reflekt

public static void eachLine( File file, EachLine eachLine ) {
  try ( FileReader reader = new FileReader( file ) ) {
    eachLine( reader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( List.class, ex );
  }
}

代码示例来源:origin: com.github.advantageous/boon-reflekt

public static void eachLine( InputStream is, EachLine eachLine ) {
  try ( Reader reader = new InputStreamReader( is, DEFAULT_CHARSET ) ) {
    eachLine( reader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( ex );
  }
}

代码示例来源:origin: com.github.advantageous/boon-reflekt

public static void eachLine( File file, EachLine eachLine ) {
  try ( FileReader reader = new FileReader( file ) ) {
    eachLine( reader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( List.class, ex );
  }
}

代码示例来源:origin: io.advantageous.boon/boon-reflekt

public static void eachLine( Reader reader, EachLine eachLine ) {
  try ( BufferedReader bufferedReader = new BufferedReader( reader ) ) {
    eachLine( bufferedReader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( List.class, ex );
  }
}

代码示例来源:origin: io.advantageous.boon/boon-reflekt

public static void eachLine( InputStream is, EachLine eachLine ) {
  try ( Reader reader = new InputStreamReader( is, DEFAULT_CHARSET ) ) {
    eachLine( reader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( ex );
  }
}

代码示例来源:origin: com.github.advantageous/boon-reflekt

public static void eachLine( Reader reader, EachLine eachLine ) {
  try ( BufferedReader bufferedReader = new BufferedReader( reader ) ) {
    eachLine( bufferedReader, eachLine );
  } catch ( Exception ex ) {
    Exceptions.handle( List.class, ex );
  }
}

相关文章