摘要: php实现 <?php // 源文件 $apk = "gb.apk"; // 生成临时文件 $file = tempnam("tmp", "zip"); // 复制文件 if(false file_put_contents($file, file_get_contents($apk))){ exit 阅读全文
posted @ 2020-09-28 16:18 程序生(Codey) 阅读(269) 评论(0) 推荐(0) 编辑
摘要: android的URLEncoder.encode与PHPrawurlencode()区别 + 改为"%20" "*" 改为 "%2A" "%7E" 改为 "~" 有两种处理方法 java端处理 URLEncoder.encode(str,"UTF-8").replace("+", "%20").r 阅读全文
posted @ 2020-09-28 16:11 程序生(Codey) 阅读(133) 评论(0) 推荐(0) 编辑