分布式文件系统研究-测试-上传文件测试
生活随笔
收集整理的這篇文章主要介紹了
分布式文件系统研究-测试-上传文件测试
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文件上傳
package com.learn.test.fastdfs;import org.csource.common.MyException; import org.csource.fastdfs.*; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner;import java.io.File; import java.io.FileOutputStream; import java.io.IOException;/*** @author Administrator* @version 1.0**/ @SpringBootTest @RunWith(SpringRunner.class) public class TestFastDFS {//上傳文件@Testpublic void testUpload(){try {//加載fastdfs-client.properties配置文件ClientGlobal.initByProperties("config/fastdfs-client.properties");//定義TrackerClient,用于請求TrackerServerTrackerClient trackerClient = new TrackerClient();//連接trackerTrackerServer trackerServer = trackerClient.getConnection();//獲取StroageStorageServer storeStorage = trackerClient.getStoreStorage(trackerServer);//創建stroageClientStorageClient1 storageClient1 = new StorageClient1(trackerServer,storeStorage);//向stroage服務器上傳文件//本地文件的路徑String filePath = "d:/logo.png";//上傳成功后拿到文件IdString fileId = storageClient1.upload_file1(filePath, "png", null);System.out.println(fileId);//group1/M00/00/01/wKhlQVuhU3eADb4pAAAawU0ID2Q159.png} catch (Exception e) {e.printStackTrace();}} }?
總結
以上是生活随笔為你收集整理的分布式文件系统研究-测试-上传文件测试的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 分布式文件系统研究-测试-搭建测试环境
- 下一篇: 分布式文件系统研究-测试-文件下载测试