如何从inputtextarea下载包含内容的xml文件?

时间:2014-11-12 14:32:53

标签: java xml jsf primefaces download

我正在尝试使用primefaces组件下载xml文件。这部分工作,但我在我的页面上有一个inputtextarea,我想把我在inputtextarea中写的文本写在下载的xml文件中。开发者可以帮助我吗?谢谢。

我的观点:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">


<h:head>
    <title>File Download</title>      
</h:head>
<h:body>
    <p:dialog modal="true" widgetVar="statusDialog" header="Status" draggable="false" closable="false" resizable="false">
        <p:graphicImage value="/images/loading11.gif" />          
    </p:dialog>

    <p:inputTextarea id ="mytheinput"  value="#{fileDownloadView.mytext}" cols="115" autoResize="true" rows="20"  />  

    <h:form>
        <p:commandButton value="Download" ajax="false" onclick="PrimeFaces.monitorDownload(start, stop);" icon="ui-icon-arrowthick-1-s">
            <p:fileDownload value="#{fileDownloadView.file}" />
        </p:commandButton>
    </h:form>

<script type="text/javascript">
function start() {
PF('statusDialog').show();
}

function stop() {
PF('statusDialog').hide();
}
</script>


</h:body>
</html>

我的豆子:

@ManagedBean(name="fileDownloadView")
public class FileDownloadView {

private StreamedContent file;
private String mytext;

public FileDownloadView() {  
    InputStream stream = ((ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext()).getResourceAsStream(mytext);
    file = new DefaultStreamedContent(stream, "xml", "yourfile.xml");
}

public StreamedContent getFile() {
    return file;
}

public String getMytext() {
    return mytext;
}

}

1 个答案:

答案 0 :(得分:1)

几点评论

  1. 您的p:inputTextarea应位于h:form元素
  2. 您的bean mytext属性必须有 getter (ok)和 setter (丢失!)
  3. 您的InputStream代码来自PF示例,该示例返回资源图片文件的内容。您只想从字符串创建流!问自己How do I turn a String into a Stream in java?
  4. 由于文本的更改(即InputStream内部而非构造函数),必须动态创建getFile
  5. 一点帮助

    public StreamedContent getFile() {
        InputStream stream = new ByteArrayInputStream( mytext.getBytes() );
        StreamedContent file = new DefaultStreamedContent(stream, "xml", "yourfile.xml");
        return file;
    }
    
    public String getMytext() {
        return mytext;
    }
    
    public void setMytext(String mytext) {
        this.mytext = mytext;
    }