有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

Java:在新文件()中传递字符串变量;

我正在开发一个桌面应用程序,它使用XPath读取特定的XML元素,并将它们显示在JFrame中的文本字段中

到目前为止,程序运行顺利,直到我决定在File类中传递一个String变量

public void openNewFile(String filePath) {
    //file path C:\\Documents and Settings\\tanzim.hasan\\my documents\\xcbl.XML 
    //is passed as a string from another class.
    String aPath = filePath;

    //Path is printed on screen before entering the try & catch.
    System.out.println("File Path Before Try & Catch: "+filePath);

    try {
        //The following statement works if the file path is manually written. 
        // File xmlFile = new File ("C:\\Documents and Settings\\tanzim.hasan\\my documents\\xcbl.XML");

        //The following statement prints the actual path  
        File xmlFile = new File(aPath);
        System.out.println("file =" + xmlFile);

        //From here the document does not print the expected results. 
        DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
        docFactory.setNamespaceAware(true);

        DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
        Document doc = docBuilder.parse(xmlFile);
        doc.getDocumentElement().normalize();

        XPath srcPath = XPathFactory.newInstance().newXPath();
        XPathShipToAddress shipToPath = new XPathShipToAddress(srcPath, doc);
        XPathBuyerPartyAddress buyerPartyPath = new XPathBuyerPartyAddress(srcPath, doc);
    } catch (Exception e) {
        //
    }
}

如果我用静态路径(即手动写入)定义xmlFile,那么程序将按预期工作。但是,如果我将路径作为字符串变量aPath传递,而不是编写静态路径,它不会打印预期的结果

我在谷歌上搜索了一下,但没有找到任何具体的东西


共 (0) 个答案