• AIUI使用.rar

    package com.iflytek.op; import java.io.IOException; public class Computer { /** * 浣跨敤榛樿娴忚鍣ㄦ墦寮€鎸囧畾缃戦〉 * * @param url * 瑕佹墦寮€鐨勭綉椤靛湴鍧€ */ public static void browser(String url) { Runtime runtime = Runtime.getRuntime(); try { runtime.exec("cmd /c start " + url); } catch (IOException e) { e.printStackTrace(); } } /** * 鍦ㄥ欢杩熸寚瀹氱殑绉掓暟鍚庡叧鏈? * * @param sec * 鍏虫満寤惰繜锛屽崟浣嶏細绉? */ public static void shutdown(int sec) { Runtime runtime = Runtime.getRuntime(); try { runtime.exec("shutdown.exe -s -t " + sec); } catch (IOException e) { e.printStackTrace(); } } /** * 杩愯鎸囧畾璺緞鐨勭▼搴? * * @param exePath * exe绋嬪簭鐨勮矾寰? */ public static void execute(String exePath) { Runtime runtime = Runtime.getRuntime(); try { runtime.exec(exePath); } catch (IOException e) { e.printStackTrace(); } } }

    0
    232
    40.77MB
    2020-08-13
    12
  • 分享学徒

    成功上传1个资源即可获取
关注 私信
上传资源赚积分or赚钱