Package jcomicdownloader.tools

Examples of jcomicdownloader.tools.CommonGUI


        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 ) );
View Full Code Here

TOP

Related Classes of jcomicdownloader.tools.CommonGUI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.