//--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
本文轉自:http://zhidao.baidu.com/question/40186033.html 感謝 回答者: gyhcom - 助理 三級 11-28 13:14
!