struts2的开发步骤:1.先定义一个能发送请求的页面,可以是链接,也可以是表单(form)2.开发action类,struts2对action并没有过多的要求,只要求:a 推荐实现action接口,或继承actionsupport类b 为每个请求参数都提供feild,并为之提供相应的setter...
分类:
其他好文 时间:
2014-10-21 21:26:42
阅读次数:
193
在ASP.NET MVC程序中,我们需要POST Data到制器中,是有很多方法。但是我们想在控制器中,获取Feild值呢?怎样获取?你可以留意到有一个类FormCollection。它能帮助到我们解决这个问题。举个简单的例子。在ASP.NET MVC应用程序中,在Controllers目录下,创建...
分类:
其他好文 时间:
2014-09-02 00:06:23
阅读次数:
253
classPerson
{
publicStringname;//定义实例Feild
publicstaticinteyeNum;//定义类Feild
}
publicclassPersonTest
{
publicstaticvoidmain(String[]args)
{
System.out.println("Person的eyeNum的类Feild值是:"
+Person.eyeNum);
}
}运行:[root@server254java]#javaPersonTes..
分类:
编程语言 时间:
2014-05-03 15:02:27
阅读次数:
484