W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
應(yīng)用可以通過分布式文件服務(wù)實現(xiàn)多個設(shè)備間的文件共享,設(shè)備 1 上的應(yīng)用A創(chuàng)建了分布式文件 a,設(shè)備 2 上的應(yīng)用A能夠通過分布式文件服務(wù)讀寫設(shè)備 1 上的文件 a。
分布式文件兼容 POSIX 文件操作接口,應(yīng)用使用 Context.getDistributedDir() 接口獲取目錄后,可以直接使用 libc 或 JDK 訪問分布式文件。
接口名 | 描述 |
---|---|
Context.getDistributedDir() | 獲取文件的分布式目錄 |
應(yīng)用可以通過 Context.getDistributedDir() 接口獲取屬于自己的分布式目錄,然后通過 libc 或 JDK 接口,在該目錄下創(chuàng)建、刪除、讀寫文件或目錄。
Context context;
... // context初始化
File distDir = context.getDistributedDir();
String filePath = distDir + File.separator + "hello.txt";
FileWriter fileWriter = new FileWriter(filePath,true);
fileWriter.write("Hello World");
fileWriter.close();
FileReader fileReader = new FileReader(filePath);
char[] buffer = new char[1024];
fileReader.read(buffer);
fileReader.close();
System.out.println(buffer);
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: