Java tutorial
/** * Copyright 2014-2015 OpenSearchServer Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.opensearchserver.extractor.parser; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import org.apache.commons.io.IOUtils; import com.ibm.icu.text.CharsetDetector; import com.ibm.icu.text.CharsetMatch; import com.opensearchserver.extractor.ParserAbstract; import com.opensearchserver.extractor.ParserDocument; import com.opensearchserver.extractor.ParserField; public class Text extends ParserAbstract { public static final String[] DEFAULT_MIMETYPES = { "text/plain" }; public static final String[] DEFAULT_EXTENSIONS = { "txt" }; final protected static ParserField CONTENT = ParserField.newString("content", "The content of the document"); final protected static ParserField LANG_DETECTION = ParserField.newString("lang_detection", "Detection of the language"); final protected static ParserField CHARSET_DETECTION = ParserField.newString("charset_detection", "Detection of the charset"); final protected static ParserField[] FIELDS = { CONTENT, LANG_DETECTION, CHARSET_DETECTION }; public Text() { } @Override protected ParserField[] getParameters() { return null; } @Override protected ParserField[] getFields() { return FIELDS; } @Override protected String[] getDefaultExtensions() { return DEFAULT_EXTENSIONS; } @Override protected String[] getDefaultMimeTypes() { return DEFAULT_MIMETYPES; } @Override protected void parseContent(InputStream inputStream, String extension, String mimeType) throws IOException { // Trying to detect the CHARSET of the stream CharsetDetector detector = new CharsetDetector(); BufferedInputStream bis = null; try { bis = new BufferedInputStream(inputStream); detector.setText(bis); CharsetMatch match = detector.detect(); ParserDocument result = getNewParserDocument(); String content = null; if (match != null) { content = match.getString(); result.add(CHARSET_DETECTION, match.getName()); } else { bis.reset(); content = IOUtils.toString(bis); } result.add(CONTENT, content); result.add(LANG_DETECTION, languageDetection(CONTENT, 10000)); } finally { IOUtils.closeQuietly(bis); } } }