这里有一个处理Excel文件的Java APIhttp://jexcelapi.sourceforge.net/

解决方案 »

  1.   

    在jsp页面怎么打开文件选择框呀
      

  2.   

    打开文件选择框要用这种:
    ----------------------------------------------------------------------
    <html>
    <head>
    <title>文件上载</title>
    </head>
    <body>
    <form action="jsp1.jsp" enctype="MULTIPART/FORM-DATA" method=post>
    作者: <input type="text" name="author" />
    <br />
    公司: <input type="text" name="company" />
    <br />
    选择要上载的文件 <input type="file" name="filename" />
    <br />
    <input type="submit" value="上载" />
    </form>
    </body>
    </html>
    ---------------------------------------------------------------------
     form也要改enctype的!
      

  3.   

    打开文件选择框要用这种:
    ----------------------------------------------------------------------
    <html>
    <head>
    <title>文件上载</title>
    </head>
    <body>
    <form action="jsp1.jsp" enctype="MULTIPART/FORM-DATA" method=post>
    作者: <input type="text" name="author" />
    <br />
    公司: <input type="text" name="company" />
    <br />
    选择要上载的文件 <input type="file" name="filename" />
    <br />
    <input type="submit" value="上载" />
    </form>
    </body>
    </html>
    ---------------------------------------------------------------------
     form也要改enctype的!
    你这里只说了上载,还有下载怎么控制呢?谢谢
      

  4.   

    【网逻】(www.weblogic.com.cn)论坛里好像有关于“jsp导入导出Excel文件”的实例,你可以去看看!