当前位置: 首页>>代码示例>>Java>>正文


Java JApplet.getParameter方法代码示例

本文整理汇总了Java中javax.swing.JApplet.getParameter方法的典型用法代码示例。如果您正苦于以下问题:Java JApplet.getParameter方法的具体用法?Java JApplet.getParameter怎么用?Java JApplet.getParameter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.swing.JApplet的用法示例。


在下文中一共展示了JApplet.getParameter方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadImage

import javax.swing.JApplet; //导入方法依赖的package包/类
/**
 * Loads an image from the application server from which a JApplet originates.  Stores
 * the the image in the image mapping with the parameter name as the key.
 * 
 * @param applet The JApplet
 * @param parameter Name of the parameter which specifies the relative path of the image
 */
protected void loadImage(JApplet applet, String parameter)
{
  String codeBase = applet.getCodeBase().toString();
  String path = applet.getParameter(parameter);

  if (path != null)
  {
    try
    {
      URL url = new URL(codeBase + path);
      BufferedImage image = ImageIO.read(url);

      images.put(parameter, image);
    }
    catch (Exception e)
    {
      //Unable to load image do nothing
    }
  }
}
 
开发者ID:terraframe,项目名称:Runway-SDK,代码行数:28,代码来源:StandardPolicy.java

示例2: getAppletParameter

import javax.swing.JApplet; //导入方法依赖的package包/类
/**
 * Returns the parameter value of the given <code>parameter</code> or 
 * <code>defaultValue</code> if it doesn't exist.
 */
private String getAppletParameter(JApplet applet, String parameter, String defaultValue)
{
	String parameterValue = applet.getParameter(parameter);
	if (parameterValue == null)
	{
		return defaultValue;
	}
	else
	{
		return parameterValue;
	}
}
 
开发者ID:valsr,项目名称:SweetHome3D,代码行数:17,代码来源:AppletApplication.java

示例3: loadParameterColor

import javax.swing.JApplet; //导入方法依赖的package包/类
protected Color loadParameterColor(JApplet applet, String name, Color defaultColor)
{
  String value = applet.getParameter(name);

  if (value == null)
  {
    return defaultColor;
  }

  return new Color(Integer.parseInt(value));
}
 
开发者ID:terraframe,项目名称:Runway-SDK,代码行数:12,代码来源:StandardPolicy.java


注:本文中的javax.swing.JApplet.getParameter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。