Tabnine Logo
IO.reader
Code IndexAdd Tabnine to your IDE (free)

How to use
reader
method
in
aQute.lib.io.IO

Best Java code snippets using aQute.lib.io.IO.reader (Showing top 20 results out of 315)

origin: biz.aQute.bnd/biz.aQute.bndlib

public LineCollection(File in) throws IOException {
  this(IO.reader(in, UTF_8));
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(InputStream in) {
  return reader(in, UTF_8);
}
origin: biz.aQute/bndlib

public static BufferedReader reader(File f) throws IOException {
  return reader(f, "UTF-8");
}
origin: biz.aQute/bndlib

public static BufferedReader reader(InputStream in) throws IOException {
  return reader(in, "UTF-8");
}
origin: org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle

public static BufferedReader reader(InputStream in) {
  return reader(in, UTF_8);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(File file) throws IOException {
  return reader(file.toPath(), UTF_8);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(InputStream in, String encoding) {
  return reader(in, Charset.forName(encoding));
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(File file, Charset encoding) throws IOException {
  return reader(file.toPath(), encoding);
}
origin: biz.aQute.bnd/biz.aQute.bnd

public static BufferedReader reader(InputStream in, String encoding) {
  return reader(in, Charset.forName(encoding));
}
origin: biz.aQute.bnd/biz.aQute.repository

public static BufferedReader reader(File file) throws IOException {
  return reader(file.toPath(), UTF_8);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(File file, String encoding) throws IOException {
  return reader(file.toPath(), Charset.forName(encoding));
}
origin: biz.aQute.bnd/bndlib

static public Properties parse(URI input) throws Exception {
  Reader reader = IO.reader(input.toURL().openStream());
  return parse(reader, input);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static Writer copy(InputStream in, Writer w, Charset charset) throws IOException {
  return copy(reader(in, charset), w);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static String collect(Path path, Charset encoding) throws IOException {
  return collect(reader(path, encoding));
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(Path path, Charset encoding) throws IOException {
  return reader(readChannel(path), encoding);
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static String collect(InputStream in, Charset encoding) throws IOException {
  return collect(reader(in, encoding));
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public static BufferedReader reader(ByteBuffer bb, Charset encoding) {
  return reader(new ByteBufferInputStream(bb), encoding);
}
origin: org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle

public static Writer copy(InputStream in, Writer w, Charset charset) throws IOException {
  return copy(reader(in, charset), w);
}
origin: biz.aQute.bnd/biz.aQute.bnd

public static String collect(InputStream in, Charset encoding) throws IOException {
  return collect(reader(in, encoding));
}
origin: biz.aQute.bnd/biz.aQute.repository

public static Writer copy(InputStream in, Writer w, Charset charset) throws IOException {
  return copy(reader(in, charset), w);
}
aQute.lib.ioIOreader

Popular methods of IO

  • copy
  • collect
  • getFile
  • deleteWithException
    Deletes the specified path. Folders are recursively deleted. Throws exception if any of the files co
  • store
  • writer
  • delete
    Deletes the specified path. Folders are recursively deleted. If file(s) cannot be deleted, no feedba
  • read
  • rename
    Renames from to to replacing the target file if necessary.
  • isSymbolicLink
  • stream
  • traverse
  • stream,
  • traverse,
  • close,
  • createSymbolicLink,
  • createSymbolicLinkOrCopy,
  • createTempFile,
  • decode,
  • mkdirs,
  • normalizePath

Popular in Java

  • Reactive rest calls using spring rest template
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JPanel (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now