Package org.sleuthkit.autopsy.coreutils

Examples of org.sleuthkit.autopsy.coreutils.StringExtract


     * @param outCharset encoding to use in the output byte stream
     */
    public AbstractFileStringIntStream(AbstractFile content, List<SCRIPT> scripts, boolean extractUTF8,
           boolean extractUTF16, Charset outCharset) {
        this.content = content;
        this.stringExtractor = new StringExtract();
        this.stringExtractor.setEnabledScripts(scripts);
        this.extractUTF8 = extractUTF8;
        this.extractUTF16 = extractUTF16;
        this.outCharset = outCharset;
        this.stringExtractor.setEnableUTF8(extractUTF8);
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.coreutils.StringExtract

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.