1

我目前正在开发一个应用程序,在该应用程序中,用户可以选择浏览和上传 excel 文件,但我很难获得正在浏览的文件的绝对路径。因为位置可以是任何东西(Windows/Linux)。

import org.apache.myfaces.custom.fileupload.UploadedFile;
-----
-----
private UploadedFile inpFile;
-----
getters and setters    
public UploadedFile getInpFile() {
    return inpFile;
} 
@Override
public void setInpFile(final UploadedFile inpFile) {
    this.inpFile = inpFile;
}

我们使用 jsf 2.0 进行 UI 开发,使用 Tomahawk 库进行浏览按钮。

浏览按钮的示例代码

t:inputFileUpload id="file" value="#{sampleInterface.inpFile}" 
        valueChangeListener="#{sampleInterface.inpFile}" />

上传按钮示例代码

     <t:commandButton action="#{sampleInterface.readExcelFile}" id="upload" value="upload"></t:commandButton>

逻辑在这里

浏览按钮 -> 用户将通过浏览位置上传按钮 -> 点击上传按钮来选择文件,它将触发 SampleInterface 中的 readExcelFile 方法。

SampleInterface 实现文件

public void readExcelFile() throws IOException {

        System.out.println("File name: " + inpFile.getName());
    String prefix = FilenameUtils.getBaseName(inpFile.getName()); 
    String suffix = FilenameUtils.getExtension(inpFile.getName());
        ...rest of the code
            ......
 }

文件名:abc.xls

前缀:abc

后缀:xls

请帮助我获取正在浏览的文件的完整路径(如 c:.....),然后将此绝对路径传递给 excelapachepoi 类,在该类中对其进行解析,并将内容显示/存储在 ArrayList 中。

4

2 回答 2

3

为什么需要绝对文件路径?你能用这些信息做什么?创建一个File?抱歉,不,如果网络服务器在物理上与网络浏览器不同的机器上运行,那绝对不可能。再想一想。更重要的是,适当的网络浏览器不会发回有关绝对文件路径的信息。

您只需要根据客户端已经发送File的上传文件的内容创建。

String prefix = FilenameUtils.getBaseName(inpFile.getName()); 
String suffix = FilenameUtils.getExtension(inpFile.getName());
File file = File.createTempFile(prefix + "-", "." + suffix, "/path/to/uploads");

InputStream input = inpFile.getInputStream();
OutputStream output = new FileOutputStream(file);

try {
    IOUtils.copy(input, output);
} finally {
    IOUtils.closeQuietly(output);
    IOUtils.closeQuietly(input);
}

// Now you can use File.

也可以看看:

于 2011-12-09T12:23:21.877 回答
0

我记得过去也有这个问题。如果我没记错的话,我认为您在上传文件时无法获得完整的文件路径。我认为出于安全目的浏览器不会告诉你。

于 2011-12-09T09:11:03.977 回答