分享uuid指令和RandomDirective

public class RandomDirective extends Directive {
   
   private java.util.Random random = new java.util.Random();
   
   public void exec(Env env, Scope scope, Writer writer) {
      try {
         writer.write(random.nextInt());
      } catch (IOException e) {
         throw new TemplateException(e.getMessage(), location, e);
      }
   }
}



public class UUIDDirective extends Directive {


    @Override
    public void exec(Env env, Scope scope, Writer writer) {
        try {
            UUID uuid = UUID.randomUUID();
            writer.write(uuid.toString());
        } catch (IOException e) {
            throw new TemplateException(e.getMessage(), location, e);
        }
    }
}

评论区

JFinal

2018-06-11 18:56

排版出问题了,注意编辑里面有一个按钮是专门用于输入代码的

热门分享

扫码入社