前言
关于android引用js问题 其实所有版本的rhino都可以用,只需设置一句话就不会报错了
Context.setOptimizationLevel(-1);
主要原因是android端的loadClass 被阉割了,估计是出于安全考虑。
正文
因为程序的所有逻辑都是写在js上的,那我们其实可以把js放到网上随时更新js就可以实现android程序的更新,我没有服务器,可是我有网盘,吼吼。
把文件上传到360网盘,然后点分享,获得了一个地址类似于“http://yunpan.cn/QUcUHNdtEirst”
这个关键不是js的实际地址 点击下载后我又得到了一个新的地址
类似于这样“http://wsdl10.yunpan.cn/share.php?method=Share.download&fhash=2588b2ca564b112143bd78a63f50db5b30e3edd1
&xqid=29888319&fname=main.js&fsize=2049&nid=13851296172171637
&cqid=6a80b4215085d2a23ed1e42ff18c5934
&st=e5ea00745daf984b49876c2e49797b76&e=1385621477&dt=10.7b270785893ffc2e3fa5a64b051dffe8”
这个是实际地址,js文件也可以下载下来,但是还是有个问题
这个地址只能维持一天的使用时间 坑爹啊!
所以返回上一步 我自己解析一下第一个地址获取js文件地址不就可以了
代码下面这样
public static String getloadURL(String shorturl,String nid) throws Exception{ String postData="shorturl="+shorturl+"&nid="+nid; final MyClient client = new MyClient("awlpx8qetr.l6.yunpan.cn", 80); client.sendMessage("POST /share/downloadfile/ HTTP/1.1\r\n"); client.sendMessage("Accept:*/*\r\n"); client.sendMessage("X-Requested-With:XMLHttpRequest\r\n"); client.sendMessage("Content-Type:application/x-www-form-urlencoded UTF-8\r\n"); client.sendMessage("Referer:http://awlpx8qetr.l6.yunpan.cn/lk/"+shorturl+"\r\n"); client.sendMessage("Content-Length:"+postData.getBytes().length+"\r\n"); client.sendMessage("Host:awlpx8qetr.l6.yunpan.cn\r\n"); client.sendMessage("User-Agent:Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)\r\n"); client.sendMessage("DNT:1\r\n"); client.sendMessage("Connection:Keep-Alive\r\n\r\n"+postData+"\r\n"); client.flush(); while(true){ Matcher m = Pattern.compile("(http:){1}[\\s\\S]+(?=\",\")").matcher(client.getMessage()); while(m.find()){ client.close(); return m.group(); } } } public static String getloadNid(String shorturl) throws Exception{ final MyClient client = new MyClient("awlpx8qetr.l6.yunpan.cn", 80); client.sendMessage("GET /lk/"+shorturl+" HTTP/1.1\r\n"); client.sendMessage("Accept:*/*\r\n"); client.sendMessage("Host:awlpx8qetr.l6.yunpan.cn\r\n"); client.sendMessage("User-Agent:Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)\r\n"); client.sendMessage("DNT:1\r\n"); client.sendMessage("Connection:Keep-Alive\r\n\r\n"); client.flush(); while(true){ Matcher m = Pattern.compile("(?<=nid : \'){1}[\\s\\S]+(?=\',)").matcher(client.getMessage()); while(m.find()){ client.close(); return m.group(); } } } public static String get360Url(String shorturl) throws Exception{ String nid=getloadNid(shorturl); return getloadURL(shorturl,nid); } public static void main(String[] args) throws Exception { String url=get360Url("QUcUHNdtEirst"); System.out.println(url); }
只要传一个url就可以获取到js地址了,只有一个小问题就是 慢要等上10-30秒左右,对于更新来说还是可以接受的