FastDFS測試圖片上傳

測試圖片上傳
官方提供一個jar包web

使用方法:
一、把FastDFS提供的jar包添加到工程中
二、初始化全局配置。加載一個配置文件
三、建立一個TrackerClient對象
四、建立一個TrackerServer對象
五、聲明一個StorageServer對象,null
六、得到StorageClient對象
七、直接調用StorageClient對象方法上傳文件便可測試

@Test
public void testUpload() throws Exception {
    // 一、把FastDFS提供的jar包添加到工程中
    // 二、初始化全局配置。加載一個配置文件。
    ClientGlobal.init("D:\\workspaces-itcast\\JaveEE18\\taotao-manager\\taotao-manager-web\\src\\main\\resources\\properties\\client.conf");
    // 三、建立一個TrackerClient對象。
    TrackerClient trackerClient = new TrackerClient();
    // 四、建立一個TrackerServer對象。
    TrackerServer trackerServer = trackerClient.getConnection();
    // 五、聲明一個StorageServer對象,null。
    StorageServer storageServer = null;
    // 六、得到StorageClient對象。
    StorageClient storageClient = new StorageClient(trackerServer, storageServer);
    // 七、直接調用StorageClient對象方法上傳文件便可。
    String[] strings = storageClient.upload_file("D:\\Documents\\Pictures\\images\\2f2eb938943d.jpg", "jpg", null);
    for (String string : strings) {
        System.out.println(string);
    }
}
配置文件
Client.conf
tracker_server=192.168.25.133:22122spa

上傳文件.net

相關文章
相關標籤/搜索