牙叔教程 简单易学
本教程仅用于学习, 禁止用于其他用途
热更新
8.7.7-0
热更新是App常用的更新方式。简单来说,就是在用户通下载安装APP之后,打开App时遇到的即时更新。
文件版本号和下载地址信息放在语雀,
语雀可以随时更改信息
语雀文章url是不变的
脚本执行的时候,
先从语雀获取更新信息,
然后对比版本号
然后决定是否更新文件
文件放在码云
let 获取dex更新信息 = require("./获取dex更新信息"); let dex更新信息 = 获取dex更新信息(); log(dex更新信息);
let localFileVersion = "0.0.1"; let needUpdate = isNeedToUpdateFile(localFileVersion);
runtime.unloadAll(true); let filePath = 下载新版dex(); runtime.loadDex(filePath);
new Packages["测试"]()();
runtime.loadJar("./jsoup.jar"); importClass(java.io.IOException); importClass(java.text.ParseException); importClass(org.jsoup.Jsoup); importClass(org.jsoup.nodes.Document); importClass(org.jsoup.select.Elements); importClass(org.jsoup.safety.Whitelist);
function getBookId() { let dexVersionurl = "https://www.yuque.com/yashujs/di90k3/gamwoe"; let r = http.get(dexVersionurl); r = r.body.string(); let content = r.match(/window\.appData =.*/); if (content) { let appData = content[0].replace("window.", ""); eval(appData); let bookId = appData.book.id; if (bookId) { return bookId; } throw new Error("没有获取到bookId"); } throw new Error("没有匹配到appData"); }
function getPageContent(bookId) { log("bookId = " + bookId); let url = "https://www.yuque.com/api/docs/gamwoe?book_id=" + bookId + "&include_contributors=true&include_hits=true&include_like=true&include_pager=true&include_suggests=true"; let r = http.get(url); r = r.body.json(); let content = r.data.content; return content; }
function StripHT(strHtml) { //获得带有保留的br和p标签的漂亮打印的html let prettyPrintedBodyFragment = Jsoup.clean( strHtml, "", Whitelist.none().addTags("br", "p"), new Document.OutputSettings().prettyPrint(true) ); // 通过禁用prettyPrint获得带有保留的换行符的纯文本 return Jsoup.clean(prettyPrintedBodyFragment, "", Whitelist.none(), new Document.OutputSettings().prettyPrint(false)); }
部分内容来自网络
牙叔教程
747748653