1. 程式人生 > >如何在tomcat伺服器中讀取xml檔案(路徑問題)

如何在tomcat伺服器中讀取xml檔案(路徑問題)

因為之前用的dom4j讀取的都是本地的xml檔案,所以一旦在伺服器中就不能再像之前那樣獲取xml路徑了。
可以通過反射獲得專案的src的路徑。

問題:如何在伺服器中讀取xml檔案(路徑問題)讀取product.xml檔案
問題

解決方案:
解決方案

解決程式碼:

//獲得Document物件
        Document doc = null;
        try {
            InputStream is = ProductDao.class.getClassLoader().getResourceAsStream("product.xml");
            doc = new
SAXReader().read(is); } catch (DocumentException e) { e.printStackTrace(); }