jsp动态生成xml文件

//--test.jsp保存在tomcat的ROOT目录下--


<%@ page language="java" contentType="text/html; charset=gb2312" import="java.util.*,java.io.*" pageEncoding="gb2312"%><%
String item_url=request.getParameter("item_url");if(item_url==null)item_url="http:IP//xx.flv";
StringBuilder strXML=new StringBuilder("<?xml version='1.0' encoding='utf-8'?>");
strXML.append("<vcaster>");
strXML.append("<item item_url='"+item_url+"' /> ");
strXML.append("</vcaster>");
//out.print(strXML);
try{
String xml=new String(strXML);
String path=request.getRealPath("."); //获得当前文件夹路径
FileWriter fw=new FileWriter(path + "//itemUrl.xml");//建立FileWriter对象,并实例化fw
//将字符串写入文件
fw.write(xml,0,xml.length()); //把XML文档写入itemUrl.xml文件
out.print("<p>XML文件已保存在当前文件夹下!!</p>");
out.print("<p>文件名为:itemUrl.xml</p>");
out.print("<p>item_url为:"+item_url+"</p>");
fw.close();
}
catch(IOException e)
{
out.print("XML文件填加失败");
}
%>

注:以上代码我已经在tomcat下面测试成功了,已经按你的要求实现了动态传URL值,例如你可以在IE地址栏中输入:
http://localhost:8080/test.jsp?item_url=www.baidu.com

你可能感兴趣的:(tomcat,xml,jsp,String,url,encoding)