I wanted to know how to create a file in the WebContent folder of a dynamic web project using Java?

The basic question remaining is how to get the path of the WebContent folder.

Note: No servlet is to be used!

Edit:

Okay, i am trying to create a new xml file from java method. I want the file to be created in the WebContent folder so that the file is created even when the application is deployed.

I am using Jboss, maven, JSF to create the dynamic web project. I need the xml file to pass data to highcharts. Please note that i will be using this method only.

Overview:

Create xml file on request

XML file to created in the WebContent folder itself

Use this xml file to pass data

link|improve this question

78% accept rate
can you please more elobarate your problem how you are trying ? – Hemant Metalia Feb 9 at 12:07
Not a good idea, especially since alot of newer app servers are using virtual filesystems to deploy your web content. – Perception Feb 9 at 12:11
You cannot do this without violating the servlet spec, making your web application depend on vendor specific side effects. – Thorbjørn Ravn Andersen Feb 9 at 12:12
@HemantMetalia Please check the edit – yash Feb 9 at 12:17
@Perception Please check the edit – yash Feb 9 at 12:17
show 14 more comments
feedback

1 Answer

Glassfish solution. AbstractSearchPageBean - any of your class

private static final String WEB_INF = "WEB-INF";

public static String getWebPath() {
    final String webInfPath = getWebInfPath();
    return webInfPath.substring(0, webInfPath.indexOf(WEB_INF) - 1);
}

public static String getWebInfPath() {
    String filePath = "";

    java.net.URL url = AbstractSearchPageBean.class.getResource("AbstractSearchPageBean.class");
    if (url != null) {
        String className = url.getFile();
        filePath = (className.contains(WEB_INF)) ? className.substring(0, className.indexOf(WEB_INF) + WEB_INF.length()) : className;
    }
    return filePath.replace("%20", " ");
}

// Create file in webapp/xml directory
private void createXmlFile(String xml) {
    try {
        String fileName = System.currentTimeMillis() + ".xml";
        File file = new File(Settings.getWebPath() + File.separatorChar + "xml" + File.separatorChar + fileName);
        logger.debug("parseXML(): Creating file: " + file.getAbsolutePath());
        if (file.createNewFile()) {
            FileWriter fw = new FileWriter(file);
            fw.write(this.parseXML(xml));
            fw.flush();
            fw.close();
            logger.debug("parseXML(): file saved to the: " + Settings.getAPPLICATION_DOMAIN() + '/' + fileName);
        } else {
            logger.warn("parseXML(): Can't create file: " + file.getAbsolutePath());
        }
    } catch (IOException ioe) {
        logger.error("parseXML(): Bad save file: ", ioe);
    }
}
link|improve this answer
Thanks but am using Jboss AS 7 – yash Feb 9 at 12:19
@yash I think it will work too. – kornero Feb 9 at 12:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.