0

在 DynamicWebProject - Eclipse 中,如何获取 src 文件夹中存在的文件的文件对象,我的意思是说类路径。

下面的程序工作正常,但是 wtpwebapps 中存在对文件的新更新,相反我只想更改 Eclipse 的 src 文件夹中存在的文件(如何获取类路径中存在的文件的 FileOutputStream)。

                String filename1 = "/WEB-INF/classes/server123.properties";
                ServletContext context = req.getSession().getServletContext();
                String path1 = context.getRealPath(filename1);


            System.out.println("PATH 1 IS :"+path1);
            FileInputStream fis1 = new FileInputStream(new File(path1));
            int ch1;
            while ((ch1 = fis1.read())!=-1) {
                System.out.print((char)ch1);
            }
            fis1.close();

            FileOutputStream fos = new FileOutputStream(path1);
            fos.write("jayesh".getBytes());
            fos.close();
4

1 回答 1

0

您可以在代码中使用 getServletContext()/filename,即

properties.load(new FileInputStream(getServletContext().getRealPath("/filename")));

或者

properties.load(new FileInputStream(getServletContext().getRealPath(/filename")));
于 2013-04-03T14:53:56.083 回答