⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 genericitem.java

📁 MG4J (Managing Gigabytes for Java) is a free full-text search engine for large document collections
💻 JAVA
字号:
package it.unimi.dsi.mg4j.query;/*		  * MG4J: Managing Gigabytes for Java * * Copyright (C) 2005-2007 Sebastiano Vigna  * *  This program is free software; you can redistribute it and/or modify it *  under the terms of the GNU General Public License as published by the Free *  Software Foundation; either version 2 of the License, or (at your option) *  any later version. * *  This program is distributed in the hope that it will be useful, but *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License *  for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */import it.unimi.dsi.Util;import it.unimi.dsi.fastutil.objects.ObjectArrayList;import it.unimi.dsi.mg4j.document.Document;import it.unimi.dsi.mg4j.document.DocumentCollection;import it.unimi.dsi.mg4j.document.DocumentFactory;import it.unimi.dsi.mg4j.document.DocumentFactory.FieldType;import java.io.Reader;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.commons.io.IOUtils;import org.apache.commons.lang.StringEscapeUtils;import org.apache.log4j.Logger;import org.apache.velocity.Template;import org.apache.velocity.app.Velocity;import org.apache.velocity.context.Context;import org.apache.velocity.tools.view.servlet.VelocityViewServlet;/** An generic item, displaying all document fields. *  * <P>This kind of {@link it.unimi.dsi.mg4j.query.QueryServlet} item will display each field * of a document inside a <samp>FIELDSET</samp> element. It is mainly useful for debugging purposes. */public class GenericItem extends VelocityViewServlet {	private static final long serialVersionUID = 1L;	private static final Logger LOGGER = Util.getLogger( GenericItem.class );		public Template handleRequest( final HttpServletRequest request, final HttpServletResponse response, final Context context ) throws Exception {		if ( request.getParameter( "doc" ) != null ) {			DocumentCollection collection = (DocumentCollection)getServletContext().getAttribute( "collection" );			response.setContentType( request.getParameter( "m" ) );			response.setCharacterEncoding( "UTF-8" );			final Document document = collection.document( Integer.parseInt( request.getParameter( "doc" ) ) );			final DocumentFactory factory = collection.factory();			final ObjectArrayList<String> fields = new ObjectArrayList<String>();			final int numberOfFields = factory.numberOfFields();						LOGGER.debug( "ParsingFactory declares " + numberOfFields + " fields"  );						for( int field = 0; field < numberOfFields; field++ ) {				if ( factory.fieldType( field ) != FieldType.TEXT ) fields.add( StringEscapeUtils.escapeHtml( document.content( field ).toString() ) );				else fields.add( StringEscapeUtils.escapeHtml( IOUtils.toString( (Reader)document.content( field ) ) ).replaceAll( "\n", "<br>\n" ) );			}			context.put( "title", document.title() );			context.put( "fields", fields );			context.put( "factory", factory );			return Velocity.getTemplate( "it/unimi/dsi/mg4j/query/generic.velocity" );		}				return null;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -