MogileFS與spring結合
阿新 • • 發佈:2018-09-07
art pro exists ren tput col 常用api ava 從服務器
一、通過Maven添加MogileFS的Java客戶端驅動包
<dependency> <groupId>fm.last</groupId> <artifactId>moji</artifactId> <version>1.4.0</version> </dependency>
二、配置Bean
<bean id="moji" class="fm.last.moji.spring.SpringMojiBean"> <property name="addressesCsv" value="192.168.174.104:7001" /> <property name="domain" value="c1" /> <property name="maxActive" value="100" /> <property name="maxIdle" value="10" /> <property name="testOnBorrow" value="true" /> </bean>
三、常用API
3.1 上傳或者覆蓋服務器上的文件
MojiFile mojiFile = moji.getFile("k2"); moji.copyToMogile(new File("test.txt"), mojiFile);
3.2 當然也可以指定類名,如:
MojiFile mojiFile = moji.getFile("k2“,”c1”);
3.3 從服務器上下載獲取文件
mojiFile.copyToFile(new File(“myTest.txt"));
3.4 刪除服務器上的文件
mojiFile.delete();
3.5 修改服務器上的文件名字
mojiFile.rename("newName");
3.6 獲得服務器上文件的大小
mojiFile.length()
3.7 檢查服務器上文件是否存在
if(mojiFile.exists()){……}
3.8 修改服務器上文件的類別
mojiFile.modifyStorageClass("new Class");
3.9 對文件key進行前綴模糊查詢
List<MojiFile> files = moji.list("k"); for(MojiFile file : files) { System.out.println("file=="+file); } 可 以指定取出幾個來,如: List<MojiFile> files = moji.list("k",10)
3.10 獲取文件的url路徑
mojiFile.getPaths()
3.11 流式上傳文件到服務器
OutputStream out = null; try { out = mojiFile.getOutputStream(); out.write("only test file".getBytes()); out.flush(); } finally { out.close(); }
3.12 流式從服務器下載文件
InputStream in = null; try { in = mojiFile.getInputStream(); byte[] bs = new byte[in.available()]; in.read(bs); System.out.println("the content===="+new String(bs)); } finally { in.close(); }
MogileFS與spring結合