gpt4 book ai didi

java - JCIFS API Java,从内部存储复制文件

转载 作者:行者123 更新时间:2023-11-30 01:24:28 24 4
gpt4 key购买 nike

我使用 JCIFS API 读取本地网络中的文本文件,下面的代码我可以打开该文件;

代码:

String sharedFolder ="tratermik";
String path="smb://192.168.43.80/"+sharedFolder+"balanca.txt";
SmbFile smbFile = new SmbFile(path);

如何将此文件复制到我的内存中?

最佳答案

下面的代码解决了我的问题。我希望我能帮助别人

   private static final byte[] buffer  = new byte[60416];


public void copiar(String serverPath, String localPath)
throws Exception {
SmbFile serverFile = new SmbFile("smb://192.168.43.80/tratermik/balanca.txt");
File localFile = new File("sdcard/sistemas/tratermic/balanca.txt);

InputStream in = new SmbFileInputStream(serverFile);
OutputStream out = new FileOutputStream(localFile);

try {
while (true) {
synchronized (buffer) {
int amountRead = in.read(buffer);
if (amountRead == -1) {
break;
}
out.write(buffer, 0, amountRead);
}
}

} catch (Exception e) {
throw e;

} finally {
if (in != null) { in.close();}
if (out != null) {out.close();}
}
}
}

关于java - JCIFS API Java,从内部存储复制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36603465/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com