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

📄 unicodeconverter.java

📁 Wicket一个开发Java Web应用程序框架。它使得开发web应用程序变得容易而轻松。 Wicket利用一个POJO data beans组件使得它可以与任何持久层技术相结合。
💻 JAVA
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.wicket.examples.unicodeconverter;import java.util.Arrays;import java.util.List;import org.apache.wicket.Component;import org.apache.wicket.examples.WicketExamplePage;import org.apache.wicket.markup.html.form.DropDownChoice;import org.apache.wicket.markup.html.form.Form;import org.apache.wicket.markup.html.form.TextArea;import org.apache.wicket.model.CompoundPropertyModel;import org.apache.wicket.model.Model;import org.apache.wicket.util.string.Strings;/** * Converts between unescaped and escaped unicode and shows a custom model. Handy for message * bundles. *  * @author Eelco Hillenius */public class UnicodeConverter extends WicketExamplePage{	private static final String FROM_ESCAPED_UNICODE = "from escaped unicode";	private static final String TO_ESCAPED_UNICODE = "to escaped unicode";	private static List translationTypes = Arrays.asList(new String[] { TO_ESCAPED_UNICODE,			FROM_ESCAPED_UNICODE });	private String source = "";	private String translationType = (String)translationTypes.get(0);	/**	 * Model that does the conversion. Note that as we 'pull' the value every time we render (we get	 * the current value of message), we don't need to update the model itself. The alternative	 * strategy would be to have a model with it's own, translated, string representation of the	 * source, which should be updated on every form post (e.g. by overriding {@link Form#onSubmit}	 * and in that method explicitly setting the new value). But as you can see, this method is	 * slighly easier, and if we wanted to use the translated value in e.g. a database, we could	 * just query this model directly or indirectly by calling {@link Component#getModelObject()} on	 * the component that holds it, and we would have a recent value.	 */	private final class ConverterModel extends Model	{		/**		 * @see org.apache.wicket.model.IModel#getObject()		 */		public Object getObject()		{			String result;			if (TO_ESCAPED_UNICODE.equals(translationType))			{				result = Strings.toEscapedUnicode(source);			}			else			{				result = Strings.fromEscapedUnicode(source);			}			return result;		}		/**		 * @see org.apache.wicket.model.IModel#setObject(java.lang.Object)		 */		public void setObject(Object object)		{			// Ignore. We are not interested in updating any value,			// and we don't want to throw an exception like			// AbstractReadOnlyModel either. Alternatively, we			// could have overriden updateModel of FormInputComponent			// and ignore any input there.		}	}	/**	 * Constructor.	 */	public UnicodeConverter()	{		Form form = new Form("form", new CompoundPropertyModel(this));		form.add(new TextArea("source"));		form.add(new DropDownChoice("translationType", translationTypes));		form.add(new TextArea("target", new ConverterModel()));		add(form);	}	/**	 * @return the source to translate	 */	public String getSource()	{		return source;	}	/**	 * @param source	 *            the source to set	 */	public void setSource(String source)	{		this.source = source;	}	/**	 * @return the selection	 */	public String getTranslationType()	{		return translationType;	}	/**	 * @param translationType	 *            the selection	 */	public void setTranslationType(String translationType)	{		this.translationType = translationType;	}}

⌨️ 快捷键说明

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