Class FilePartSource

  • All Implemented Interfaces:
    PartSource

    public class FilePartSource
    extends java.lang.Object
    implements PartSource
    A PartSource that reads from a File.
    Since:
    2.0
    • Constructor Summary

      Constructors 
      Constructor Description
      FilePartSource​(java.io.File file)
      Constructor for FilePartSource.
      FilePartSource​(java.lang.String fileName, java.io.File file)
      Constructor for FilePartSource.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.io.InputStream createInputStream()
      Return a new FileInputStream for the current filename.
      java.lang.String getFileName()
      Return the current filename
      long getLength()
      Return the length of the file
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FilePartSource

        public FilePartSource​(java.io.File file)
                       throws java.io.FileNotFoundException
        Constructor for FilePartSource.
        Parameters:
        file - the FilePart source File.
        Throws:
        java.io.FileNotFoundException - if the file does not exist or cannot be read
      • FilePartSource

        public FilePartSource​(java.lang.String fileName,
                              java.io.File file)
                       throws java.io.FileNotFoundException
        Constructor for FilePartSource.
        Parameters:
        fileName - the file name of the FilePart
        file - the source File for the FilePart
        Throws:
        java.io.FileNotFoundException - if the file does not exist or cannot be read