file.getPath()[duplicate]的相对路径

问题描述 投票:0回答:2

这个问题在这里已有答案:

在这个程序中,我试图选择一个文件并读取该文件的项目的相对路径

        FileChooser photo = new FileChooser();
        Stage stage = new Stage();stage.setTitle("File Chooser Sample");
        openButton.setOnAction((final ActionEvent t) -> {
            File file = photo.showOpenDialog(stage);
            if (file != null) {
                System.out.println(file.getPath());;
            }
        });

我的项目的路径是C:\ Users \ 151 \ eclipse-workspace \ FlexiRentGui \

我在eclipse ide中运行程序

当我选择C:\ Users \ 151 \ eclipse-workspace \ FlexiRentGui \ res \ 1.jpg

而不是打印相对路径“/res/1.jpg”

它仍会打印绝对路径C:\ Users \ 151 \ eclipse-workspace \ FlexiRentGui \ res \ 1.jpg

java eclipse javafx file-handling
2个回答
1
投票

您需要获取当前目录/项目的根目录的URI,然后使用java.net.URI.relativize()方法查找所选文件的相对路径w.r.t项目的根目录。像这样:new File(cwd).toURI().relativize(file.toURI()).getPath()

这是伪代码:

package org.test;

import java.io.File;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.GridPane;
import javafx.stage.FileChooser;
import javafx.stage.Stage;

public class FileChooserDemo extends Application {

    public FileChooserDemo() {};

    public static void main(String[] args) throws ClassNotFoundException {
        FileChooserDemo.launch(FileChooserDemo.class); 
    }

    public void chooseFileAndPrintRelativePath() {
        FileChooser photo = new FileChooser();
        Stage stage = new Stage();
        stage.setTitle("File Chooser Sample");
        Button openButton = new Button("Choose file");
        openButton.setOnAction((t) -> {
            File file = photo.showOpenDialog(stage);
            if (file != null) {
                String cwd = System. getProperty("user.dir");
                System.out.println(new File(cwd).toURI().relativize(file.toURI()).getPath());
            }
        });
        //Creating a Grid Pane 
        GridPane gridPane = new GridPane();    
        //Setting size for the pane 
        gridPane.setMinSize(400, 200);
        gridPane.add(openButton, 0, 0); 
        Scene scene = new Scene(gridPane);
        stage.setScene(scene);
        stage.show();
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        chooseFileAndPrintRelativePath();
    }

}

0
投票

您可以避免使用旧的java.io包并使用java.nio代替。您的代码看起来会更好一些,并且会更短(也使用新库)。

为此,只需获取当前的工作目录:

var pwd = Paths.get("").toAbsolutePath();
var relative = pwd.relativize(Paths.get("someOtherPath"));

我希望这有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.