gpt4 book ai didi

java - 如何从 S3 链接获取文件 - java

转载 作者:行者123 更新时间:2023-11-30 07:00:13 29 4
gpt4 key购买 nike

如何使用 Java 从 Amazon 文件路径获取文件。它总是返回(文件名、目录名或卷标语法不正确)错误。如果我给出本地路径,它就可以完美工作。这是我的代码

FileInputStream fis;
String filePath = "https://mydomain:8080/S3DOC/?filename=/folder/DEV/Portal/sample.doc";
if(FilePath.substring(FilePath.length() -1).equals("x")){ //is a docx
System.out.println("docx");
try {
fis = new FileInputStream(new File(FilePath));
XWPFDocument doc = new XWPFDocument(fis);
XWPFWordExtractor extract = new XWPFWordExtractor(doc);
System.out.println(extract.getText());
} catch (IOException e) {

e.printStackTrace();
}
} else { //is not a docx
System.out.println("doc");
try {
fis = new FileInputStream(new File(FilePath));
HWPFDocument doc = new HWPFDocument(fis);
WordExtractor extractor = new WordExtractor(doc);
System.out.println(extractor.getText());
} catch (IOException e) {
e.printStackTrace();
}
}

错误:java.io.FileNotFoundException:https:\mydomain:8080\S3DOC\?filename=\folder\DEV\Portal\sample.doc(文件名、目录名或卷标语法不正确)

最佳答案

s3路径如:s3://bucket/key

您可以使用

 AmazonS3Client.getObject(String bucketName, String key);

获取S3Object,然后获取InputStream。

关于java - 如何从 S3 链接获取文件 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41055951/

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