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

📄 propertiesexploreritem.java

📁 一个agent 工具包,可以开发移动设备应用,考虑了安全措施
💻 JAVA
字号:
package SOMA.utility;

import java.util.*;
import java.io.*;

/** Voce di menu per leggere le proprieta' di sistema.
*
* @author Livio Profiri
*/
public class PropertiesExplorerItem extends SOMA.explorer.ExplorerItem
{
  public PropertiesExplorerItem()
  {
    super( "{property-key {property_value}}" );
  }

  /** Nessun argomento: lista di tutte le proprieta',
  * 1 argomento: Stampa la proprieta' corrispondente.
  * 2 argomenti (key value): assegna value a key, restituisce il vecchio valore.
  */
  public Object Execute( Collection Parameters, PrintStream out )
  {
    Object returnValue = null;

    if( Parameters.size() == 0 )
    {
      System.getProperties().list( out );
    }
    else if( Parameters.size() == 1 )
    {
      String Param = (String)Parameters.iterator().next();

      returnValue = System.getProperty( Param );
      out.println( Param + "=" + returnValue );
    }
    else if( Parameters.size() == 2 )
    {
      Iterator i = Parameters.iterator();
      String Key = (String)i.next();
      String Value = (String)i.next();
      returnValue = System.setProperty( Key, Value );

      out.println( "Key: " + Key  );
      out.println( "Old value: " + returnValue  );
      out.println( "New value: " + Value  );
    }

    return null;
  }

  public String Help( PrintStream out )
  {
    out.println( "No argument -> Lists all tha System Properties." );
    out.println( "1 argument KEY -> Prints the corresponding System Property value." );
    out.println( "2 argument KEY VALUE -> Sets the KEY property to VALUE." );
    return Syntax;
  }
}

⌨️ 快捷键说明

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