Interface BufferedReaderFactory

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      java.io.BufferedReadercreate​(org.springframework.core.io.Resource resource, java.lang.String encoding)
      Create a BufferedReader for reading String items from the provided resource.
    • Method Detail

      • create

        java.io.BufferedReader create​(org.springframework.core.io.Resource resource,
                                      java.lang.String encoding)
                               throws java.io.UnsupportedEncodingException,
                                      java.io.IOException
        Create a BufferedReader for reading String items from the provided resource.
        Parameters:
        resource - a Resource containing the data to be read
        encoding - the encoding required for converting binary data to String
        Returns:
        a BufferedReader
        Throws:
        java.io.UnsupportedEncodingException - if the encoding is not supported by the platform
        java.io.IOException - if there is a problem creating the reader