PopedomCheck.java~10~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. package officeol.mc.tools;
  2. public class PopedomCheck {
  3.     public PopedomCheck() {
  4.     }
  5.     public String[][] popeArray(String[][] pope) {
  6.         String[][] temp = new String[pope.length][3];
  7.         for (int i = 0; i < pope.length; i++) {
  8.             temp[i] = pope[i][0].split("_");
  9.         }
  10.         return temp;
  11.     }
  12.     public boolean getPagePope(String pageType,String[][] pope){
  13.         for(int i = 0; i < pope.length; i ++){
  14.             if(pageType.equals(pope[i][1])){
  15.                 return true;
  16.             }
  17.         }
  18.         return false;
  19.     }
  20.     public String getFanwei(String pageType,String opType,String[][] pope){
  21.         return "";
  22.     }
  23. }