当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java PropertyPermission getActions()用法及代码示例


PropertyPermission类getActions()方法

  • getActions() 方法可在java.util包。
  • getActions() 方法用于以字符串表示的形式获取当前操作的列表。
  • getActions() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getActions() 方法在获取一组动作时不会抛出异常。

用法:

    public String getActions();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是String,它检索动作的字符串表示。

例:

// Java program to demonstrate the example 
// of String getActions() method of 
// PropertyPermission

import java.util.*;

public class GetActionsOfPropertyPermission {
 public static void main(String arg[]) {
  // Instantiates two PropertyPermission object
  PropertyPermission prop_perm1 = new PropertyPermission("os.version", "write");
  PropertyPermission prop_perm2 = new PropertyPermission("os.name", "read");

  // By using getActions() method is to
  // returns the action on at the property
  // on the objects prop_perm1, prop_perm2

  String action1 = prop_perm1.getActions();
  String action2 = prop_perm2.getActions();

  // Display action on prop_perm1
  System.out.print("prop_perm1.getActions():");
  System.out.println(action1);

  // Display action on prop_perm2
  System.out.print("prop_perm2.getActions():");
  System.out.println(action2);
 }
}

输出

prop_perm1.getActions():write
prop_perm2.getActions():read


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java PropertyPermission getActions() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。