Tabnine Logo
FSZipReader
Code IndexAdd Tabnine to your IDE (free)

How to use
FSZipReader
in
kieker.analysis.plugin.reader.filesystem

Best Java code snippets using kieker.analysis.plugin.reader.filesystem.FSZipReader (Showing top 5 results out of 315)

origin: kieker-monitoring/kieker

  readerThread = new Thread(new FSDirectoryReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else if (inputDir.isFile() && inputDirFn.endsWith(FSUtil.ZIP_FILE_EXTENSION)) {
  readerThread = new Thread(new FSZipReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else {
  this.logger.warn("Invalid Directory or filename (no Kieker log): {}", inputDirFn);
origin: net.kieker-monitoring/kieker

  this.readMappingFile(zipInputStream);
} catch (final IOException ex) {
  LOG.error("Error accessing ZipInputStream", ex);
      if (filename.endsWith(FSUtil.NORMAL_FILE_EXTENSION)) {
        LOG.info("< Loading " + filename);
        this.readAsciiFile(reader);
      } else if (filename.endsWith(".bin")) {
        LOG.info("< Loading " + filename);
              + "' is not supported for binary files. But trying to read '" + filename + "'");
        this.readBinaryFile(input);
origin: kieker-monitoring/kieker

  this.readMappingFile(zipInputStream);
} catch (final IOException ex) {
  LOGGER.error("Error accessing ZipInputStream", ex);
origin: kieker-monitoring/kieker

  readerThread = new Thread(new FSDirectoryReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else if (inputDir.isFile() && inputDirFn.endsWith(FSUtil.ZIP_FILE_EXTENSION)) {
  readerThread = new Thread(new FSZipReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else {
  this.logger.warn("Invalid Directory or filename (no Kieker log): {}", inputDirFn);
origin: net.kieker-monitoring/kieker

  readerThread = new Thread(new FSDirectoryReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else if (inputDir.isFile() && inputDirFn.endsWith(FSUtil.ZIP_FILE_EXTENSION)) {
  readerThread = new Thread(new FSZipReader(inputDir, this, this.ignoreUnknownRecordTypes));
} else {
  this.log.warn("Invalid Directory or filename (no Kieker log): " + inputDirFn);
kieker.analysis.plugin.reader.filesystemFSZipReader

Javadoc

Reads the contents of a single zip file and passes the records to the registered receiver of type IMonitoringRecordReceiver.

Most used methods

  • <init>
    Creates a new instance of this class.
  • readMappingFile
    Reads the mapping file located in the zip file.
  • readAsciiFile
  • readBinaryFile

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Github Copilot 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