⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 importcfcjob.java

📁 java写的qq代码实现qq的部分功能
💻 JAVA
字号:
/*
* LumaQQ - Java QQ Client
*
* Copyright (C) 2004 notXX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package edu.tsinghua.lumaqq.ui.jobs;

import java.lang.reflect.InvocationTargetException;

import org.eclipse.core.runtime.IProgressMonitor;

import edu.tsinghua.lumaqq.CFCImporter;
import edu.tsinghua.lumaqq.FaceEntry;
import edu.tsinghua.lumaqq.LumaQQ;
import edu.tsinghua.lumaqq.ui.MainShell;
import edu.tsinghua.lumaqq.utils.FaceUtil;
import edu.tsinghua.lumaqq.xml.faces.FaceGroup;

/**
 * 导入CFC文件的任务
 * 
 * @author luma
 */
public class ImportCFCJob extends AbstractJob {
    private boolean finished;
    private String fileName, destDir;
    private FaceGroup g;
    private CFCImporter importer;
    
    public ImportCFCJob(String fileName, String destDir, FaceGroup g) {
        this.fileName = fileName;
        this.destDir = destDir;
        this.g = g;
    }
    
    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.AbstractJob#prepare(edu.tsinghua.lumaqq.ui.MainShell)
     */
    public void prepare(MainShell main) {
        super.prepare(main);
        importer = new CFCImporter(fileName, destDir);
    }
    
    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.IJob#clear()
     */
    public void clear() {
    }

    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.IJob#isSuccess()
     */
    public boolean isSuccess() {
        return true;
    }

    /* (non-Javadoc)
     * @see org.eclipse.jface.operation.IRunnableWithProgress#run(org.eclipse.core.runtime.IProgressMonitor)
     */
    public void run(IProgressMonitor monitor) throws InvocationTargetException,
            InterruptedException {
        monitor.beginTask("", 100);
        monitor.subTask(LumaQQ.getString("job.import.cfc"));

        FaceUtil util = FaceUtil.getInstance();
        for(FaceEntry entry = importer.getNextEntry(); entry != null; entry = importer.getNextEntry()) {
            monitor.worked(1);
      
            // 如果这个表情已经存在,跳过
            if(util.hasFace(entry.md5))
                continue;            
            // 如果保存这个表情失败,跳过
            if(!importer.saveEntry())
                continue;
            // 添加表情
            util.addFace(entry, g);
        }
        
        importer.dispose();
		monitor.done();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -