Package org.apache.james.mime4j.field.structured

Examples of org.apache.james.mime4j.field.structured.StructuredFieldParser


    private void parseLocation(final String value) {
        isContentLocationSet = true;
        if (value != null) {
            final StringReader stringReader = new StringReader(value);
            final StructuredFieldParser parser = new StructuredFieldParser(stringReader);
            parser.setFoldingPreserved(false);
            try {
                contentLocation = parser.parse();
            } catch (MimeException e) {
                contentLocationParseException = e;
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.james.mime4j.field.structured.StructuredFieldParser

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.