摘要:
<script src="http://cdn.jsdelivr.net/g/filesaver.js"></script> <script> function SaveAsFile(t,f,m) { try { var b = new Blob([t],{type:m}); saveAs(b, f 阅读全文
摘要:
Java中ArrayList去除重复元素 //删除ArrayList中重复元素 public static void removeDuplicate(ArrayList<ForCytoLevel3> list) { for ( int i = 0 ; i < list.size() - 1 ; i 阅读全文
摘要:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at file:///xxx.txt. (Reason: CORS request not http). 原因: 浏览 阅读全文