struts中一样可以用的。
1、建议程序开头先执行:
    super.execute(mapping, form, request, response);
2、request.getParameter("xxx")  即可和jsp中一样get到参数。

解决方案 »

  1.   

    看看你的struts-config.xml文件吧,没写对
      

  2.   

    struts-config.xml这个文件你检查一下!我也刚学习!
      

  3.   

    displayAction的type所指定的action不存在!
      

  4.   

    <action-mappings>中  
    <action type="com.aa.System.action.DispalyAction" input="/manage/display.jsp" scope="session" path="/displayAction" />在 dispaly.jsp中 写/displayAction.do
    就会跳到 com.aa.System.action.DispalyAction 了
    是这样吧
    用了super.perform(×,×,×,×)错误依旧  prevented it from fulfilling this request.
    是不是不能向 Action  post 或 get String[]值?Apache Tomcat/4.0.6 - HTTP Status 500 - Internal Server Error
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.exception java.lang.UnsupportedOperationException: Method perform() not yet implemented.
     at com.accp.UniversutySystem.action.EditAction.perform(EditAction.java:17)
      

  5.   

    欢迎参观:http://netfish.aboutme.com/myclass3.htm我来帮你顶,UP!UP!
      

  6.   

    如果struts-config.xml 这个文件有问题 我可以
    在 浏览器上 直接 http://localhost:8080/System/displayAction.do 访问吗?
      

  7.   

    它不是提示:
    exception java.lang.UnsupportedOperationException: Method perform() not yet implemented.你的抽象方法:perform没有具体编写啊。
    补充完了就可以了。