Common.downloadFile( url, SetUp.getTempDirectory(), tempFile, false, "", "" );
String allPageString = Common.getFileString( SetUp.getTempDirectory(), tempFile );
// 預設從前n張圖去挑選最適合的封面
int n = 5;
String[] coverStrings = new CommonGUI().getCoverStrings();
int index = SetUp.getCoverSelectAmountIndex();
if ( coverStrings.length > index ) {
n = Integer.parseInt( coverStrings[index].replaceAll( "\\D", "" ) ); // 只取數字的部份
}
List<String> coverList = getCoverURL( getCoverList( allPageString, n ) );