我下面这么写可是就是没数据些如1.txt里!
<form name="form1" method="post" action="baocun.jsp">
  <input name="tt" type="text" value="">
  <input type="submit" name="提交" value="提交">
</form>

baocun.jsp
<% String str=request.getParameter("tt");//文本框中的参数
   String nameOfTextFile = "1.txt";
   PrintWriter pw = new PrintWriter(new FileOutputStream(nameOfTextFile));
        pw.println(str);
        //clean up
        pw.close();
%>
<P>写入文件内容为</P>
<FONT SIZE = 4 COLOR = red>
<%
String path = request.getRealPath("/");
FileReader fr = new FileReader(path + "\\wenjian\\txt\\1.txt"); //建立FileReader对象,并设定由fr对象变量引用
BufferedReader br = new BufferedReader(fr); //建立BufferedReader对象,并设定由br对象变量引用
String Line = br.readLine(); //读取一行数据
while(Line != null) //判断读取得的资料是否为null
{
    out.println(Line + "<BR>"); //输出读取得的资料
    Line = br.readLine(); //读取一行资料
}
fr.close(); //关闭档案