1 package org.jahia.utils.fileparsers; 2 3 import java.io.InputStream ; 4 5 public interface FileExtractor { 6 7 15 public abstract String getContentAsString(String path, 16 long lastModified, 17 InputStream fileStream) 18 throws Exception ; 19 20 27 public abstract String getContentAsString(String path, 28 long lastModified, 29 InputStream fileStream, 30 String charSet) throws Exception ; 31 32 } 33 | Popular Tags |