• 使用Java, AppleScript对晓黑板进行自动打卡


    使用Java, AppleScript对晓黑板进行自动打卡

    由于我们学校要求每天7点起床打卡,但是实在做不到,遂写了这个脚本。

    绪论

    由于晓黑板不支持网页版,只能使用App进行打卡,所以我使用网易的安卓模拟器,安装App。

    打卡实现

    逻辑非常简单:

    • 使用java的Robot类来移动,点击鼠标
    • 由于Robot对模拟器输入无效,就使用Applescript键入1
    • 再点击一次按钮,完成打卡

    代码:

    package edu.sfls.Jeff.JavaDev.App.AutoClockIn;
    
    import java.awt.*;
    import java.awt.event.InputEvent;
    import java.io.IOException;
    
    public class Main {
    
        public static void main(String[] args) throws AWTException, InterruptedException, IOException {
            Robot robot = new Robot();
            robot.mouseMove(441, 978);
            robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
            Thread.sleep(10);
            robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
            Thread.sleep(1000);
            String[] script = {"osascript", "-e", "tell application "NemuPlayer"
    " +
                    "	activate
    " +
                    "end tell
    " +
                    "
    " +
                    "tell application "System Events"
    " +
                    "	tell process "NemuPlayer"
    " +
                    "		tell window 1
    " +
                    "			key code 18
    " +
                    "		end tell
    " +
                    "	end tell
    " +
                    "end tell"};
            Runtime.getRuntime().exec(script);
            Thread.sleep(1000);
            robot.mouseMove(487, 127);
            robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
            Thread.sleep(10);
            robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
        }
    
    }
    
    

    打包java文件

    首先我们需要通过IDE/命令行打包成可执行jar文件

    使用AppleScript封装成App

    代码:

    do shell script "java -jar /Users/jefferson/Documents/Coding\ Directory/Apple\ Script/daka/AutoClockIn.jar"
    

    使用plist来定时执行

    虽然可以用java的办法,但是我有点懒,直接使用Mac OS原生的方法,创建一个plist

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
      <dict>
        <!-- 名称,要全局唯一 -->
        <key>Label</key>
        <string>com.jefferson.cron.clockin</string>
        <!-- 命令, 第一个为命令,其它为参数-->
        <key>ProgramArguments</key>
        <array>
            <string>open</string>
          	<string>/Users/jefferson/Documents/Coding Directory/Apple Script/daka/daka.app</string>
        </array>
        <!-- 运行时间 -->
        <key>StartCalendarInterval</key>
        <dict>
          <key>Minute</key>
          <integer>01</integer>
          <key>Hour</key>
          <integer>7</integer>
        </dict>
        <!-- 标准输入文件 -->
        <key>StandardInPath</key>
        <string>/Users/jefferson/Documents/run-in-meican.log</string>
        <!-- 标准输出文件 -->
        <key>StandardOutPath</key>
        <string>/Users/jefferson/Documents/run-in-meican.log</string>
        <!-- 标准错误输出文件 -->
        <key>StandardErrorPath</key>
        <string>/Users/jefferson/Documents/run-in-meican.log</string>
      </dict>
    </plist>
    

    写一个shell脚本来刷新

    launchctl unload ~/Library/LaunchAgents/com.jefferson.cron.clockin.plist
    sleep 0.5
    launchctl load ~/Library/LaunchAgents/com.jefferson.cron.clockin.plist
    

    给脚本加权限

    sudo chmod +x reset.sh
    

    运行脚本启动

    ./reset.sh
    
  • 相关阅读:
    用prototype属性来模拟一下类的继承
    Ajax 教程:Ajax 入门简介
    Ajax工作原理
    最新的Ajax教程和技术(上篇)
    javascript面向对象技术基础
    浏览器对象模型
    jQuery (选择器,属性,筛选,文档处理)
    shell(一)
    ntpntpdate时间同步
    centos7新系统安装
  • 原文地址:https://www.cnblogs.com/jeffersonqin/p/12359691.html
Copyright © 2020-2023  润新知