
Servlet+JavaBean
bo_hai
这个作者很懒,什么都没留下…
展开
-
Servlet的复习。
e>This is the display name of my J2EE component</display-name> <servlet-name>Login</servlet-name> <servlet-class>com.servlet.Login</servlet-class> </servlet&am2011-02-14 13:40:47 · 126 阅读 · 0 评论 -
JavaBean的温习。
getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductType() { return productType; } public void setProductType(String productType) { this2011-02-14 14:58:04 · 97 阅读 · 0 评论 -
obj使用后赋值null讨论
TestObject> objs = new ArrayList<TestObject>(); TestObject obj = null; for (int i = 0 ;i < 3; i++) { obj= new TestObject(); obj.setName("yihaodian"+String.valueOf(i)); objs.add(obj); // obj 设置成2011-11-16 13:13:01 · 149 阅读 · 0 评论 -
ProbeFactory.getProbe() 的使用
.newheight.model.TempProduct; /** * <pre> * ProbeFactory.getProbe()测试 * </pre> * * @author liuhongbo * @version $Id: TestProbe.java, v 0.1 2012-3-22 上午09:47:45 liuhongbo Exp $ */ public class TestProbe { p原创 2012-03-22 11:43:13 · 177 阅读 · 0 评论 -
List 中去除 null 方法讨论
ys.add(null); arrays.add(789); System.out.println(arrays); } 注:一个list,向其中插入数据时,也插入一些null。程序输出如下: [2, null, 456, null, 789] 现在有这个需求:去除list中null 元素。尝试的代码如下: public static void main(String[] args) { List<Integer> arrays2013-12-03 19:10:48 · 151 阅读 · 0 评论