1 // TODO:把網頁中的鏈接替換為本地路徑及文件名 2 for (String link : links) { 3 String baseLink = "http://localhost:91/qywz/template3/"; 4 String realLink = link.replace(baseLink, ""); 5 System.out.println("realLink=========="+realLink); 6 //轉化為本地鏈接規則 7 String localLink =""; 8 localLink=getFileNameByUrl(link, 9 getMethod.getResponseHeader("Content-Type") 10 .getValue()); 11 System.out.println("localLink=========="+localLink); 12 //替換 13 htmlStr=htmlStr.replace("\""+realLink+"\"","\""+localLink+"\""); 14 htmlStr=htmlStr.replace("'"+realLink+"'","'"+localLink+"'"); 15 System.out.println("本頁面鏈接=========="+link); 16 //System.out.println("頁面內容=========="+htmlStr); 17 }