📄 searchlocale.java
字号:
/* * File: SearchLocale.java * Project: MPI Linguistic Application * Date: 02 May 2007 * * Copyright (C) 2001-2007 Max Planck Institute for Psycholinguistics * * 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 */package mpi.search;import java.util.Locale;import java.util.MissingResourceException;import java.util.ResourceBundle;/** * Created on Jun 10, 2004 * * @author Alexander Klassmann * @version July 2004 */public class SearchLocale { private static Locale locale; private static ResourceBundle resourcebundle; /** * Constructor */ static { setLocale(Locale.getDefault()); } /** * Gets the current locale * * @return The current locale */ final public static Locale getLocale() { return locale; } /** * Sets the current locale * * @param locale_in * The new locale */ final public static void setLocale(Locale locale_in) { if ((locale != null) && locale.equals(locale_in)) { return; } //if (locale != null && locale.getCountry().equals(locale_in.getCountry())) { // return; //} locale = locale_in; try { resourcebundle = ResourceBundle.getBundle("mpi.search.resources.Language", locale); } catch (MissingResourceException e) { } if (resourcebundle == null) { System.out.println("WARNING: no language resources for " + locale.getDisplayLanguage()); } } /** * Gets the string in the right language from the right resource file * * @param str * The string which has to be mapped to the right language * * @return The string in the right language */ final public static String getString(String str) { if (locale == null) { setLocale(Locale.getDefault()); } if (resourcebundle != null) { try { return resourcebundle.getString(str); } catch (MissingResourceException ex) { System.out.println("Warning: no localization for " + str + " found in language " + locale.getDisplayCountry()); } catch (Exception ex) { ex.printStackTrace(); } } return ""; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -