Java 类org.apache.commons.httpclient.methods.multipart.FilePartSource 实例源码

项目:epay    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:framework    文件:AlipayCore.java   
/**
 * 生成文件摘要
 *
 * @param strFilePath      文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if (file_digest_type.equals("MD5")) {
        return DigestUtils.md5Hex(file.createInputStream());
    } else if (file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    } else {
        return "";
    }
}
项目:WeiXing_xmu-2016-MrCode    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:k-framework    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:Shop-for-JavaWeb    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:xmu-2016-MrCode    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:shopping    文件:AlipayCore.java   
/** 
 * 生成文件摘要
 * @param strFilePath 文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    if(file_digest_type.equals("MD5")){
        return DigestUtils.md5Hex(file.createInputStream());
    }
    else if(file_digest_type.equals("SHA")) {
        return DigestUtils.sha256Hex(file.createInputStream());
    }
    else {
        return "";
    }
}
项目:GeneralUtils    文件:AlipayCore_O.java   
/**
 * 生成文件摘要
 *
 * @param strFilePath      文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    switch (file_digest_type) {
        case "MD5":
            return DigestUtils.md5Hex(file.createInputStream());
        case "SHA":
            return DigestUtils.sha256Hex(file.createInputStream());
        default:
            return "";
    }
}
项目:GeneralUtils    文件:AlipayCore.java   
/**
 * 生成文件摘要
 *
 * @param strFilePath      文件路径
 * @param file_digest_type 摘要算法
 * @return 文件摘要结果
 */
public static String getAbstract(String strFilePath, String file_digest_type) throws IOException {
    PartSource file = new FilePartSource(new File(strFilePath));
    switch (file_digest_type) {
        case "MD5":
            return DigestUtils.md5Hex(file.createInputStream());
        case "SHA":
            return DigestUtils.sha256Hex(file.createInputStream());
        default:
            return "";
    }
}