我正在尝试使用 rest 来证明我可以从 .xml 文档创建文件。这是我下面的代码。每当我运行它时,它都会返回“不工作”,表示该文件不存在。articles.xml 文件位于我的 WEB-INF 文件夹中,我只是不知道如何使它工作。这是文件路径的错误布局吗?我可以将 xml 转换为这样的文件吗?
@Path("test")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String test()
{
try
{
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
}
catch (ParserConfigurationException e)
{
return "caught";
}
File file = new File("/WEB-INF/Articles.xml");
if (file.exists())
return "its working";
else
return "not working";
}