`
文章列表
Android中应用界面布局介绍如下: 1.LinearLayout:是一种Android中最常用的布局之一,它将自己包含的子元素按照一个方向进行布局排列。 方向有两种:水平(Android:orientation="horizontal")和竖直(Android:orientation="vertical") 2.FrameLayout:一个FrameLayout对象好比一块在屏幕上提前预定好的空白区域,然后可以填充一些元素到里边,比方说一张图片等。需要注意的是所有元素都被放置在FrameLayout区域的左上的 ...
Android开发时,在layout中新建.xml文件时,R.java文件中不能自动生成对应的字段属性值 解决办法:看看那有没有大写的字母,在layout新建xml文件时,要满足Android的语法要求。
开发环境搭建参考附件!
异常信息: java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer 由于Hibernate3.2.5版本的(select count(*))查询返回的结果是个Long 不能强制转换: public int getAllUserNum(){ Session session = HiberSF.getSession(); try { session.getTransaction().begin(); Long lo = (Long)sessio ...
经常我们要删除集合中的某些元素。有些可能会这么写。 public void operate(List list){ for (Iterator it = list.iterator(); it.hasNext();) { String str = (String)it.next(); if (str.equals("chengang")){ list.remove(str); } } } 这种写法一运行就会报如下 ...
public void del(int id){ session.beginTransaction().begin(); Company c=(Company) session.get(Company.class, 1); Set set=c.getEmployees(); Iterator it=set.iterator(); while(it.hasNext()){ Employee e=(Employee) it.next(); System.out.println(e.getId()); System.out.println(id ...
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment). log4j:WARN Please initialize the log4j system properly. %%%% Error Creating SessionFactory %%%% org.hibernate.MappingException: An association from the table author_book refers to an unmapped class: Author at or ...
Exception in thread "main" org.hibernate.hql.ast.QuerySyntaxException: user is not mapped [from user as u where u.name=:name and u.password=:password] at org.hibernate.hql.ast.util.SessionFactoryHelper.requireClassPersister(SessionFactoryHelper.java:158) at org.hibernate.hql.ast.tree. ...
在导入war文件之前首先 新建项目      比如:webPorject 然后在Myeclipse中: 在File===》import==》General中选择Archive File   出现对话框    ====>在Form archive file中选择你要导入的项目.war    =====>全选 =====>导入你新建立的项目   点击Finish  
开发环境的搭建: 1:添加struts2.0 jar包 根据自己的struts2的版本添加。 2: web.xml添加过滤器进行拦截请求 <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping> <filte ...
2.struts2.0的全局跳转 <global-results> <result name=”ok”>/ok.jsp</result> </global-results> 3.struts2.0的局部跳转: <action name=”login” class=”dd.login”> <result name=”ok”>/ok.jsp</result> ...
一:回顾struts2.0的处理流程 ==>>>>当处理的提交的Action时通过 ==>>>>web.xml ===>>>>过滤处理 ====>>>>org.apache.struts2.dispatcher.FilterDispatcher ===>>>通过FilterDipatcher====>>>struts.xml文件 ===>>>>在struts.xml去寻找提交action处理的action ===当找到时 ...
Struts2.0中数据直接的传递:[align=center][/align] 1. action与action之间传递数据:    在第一个action中execute()方法中使用:   ActionContext.getContext().getSession().put("kk", getUser());//getUser()是form表单提交的参数name=“user”在action中的封装    来保存参数:    通过:<result name="ok" type="chain">list</resu ...
输出结果:   * * * * *     * * * * *       * * * * *         * * * * * 算法分析实现: package com.red; public class TestFor { public static void main(String[] args) { int i; for (i = 2; i < 10; i++) { if(i%2==0){ for (int j = 0; j < i; j++) { System.out.print(" " ...
 1. 栈(stack)与堆(heap)都是Java用来在Ram中存放数据的地方,本文对其进行比较。   2. 栈的优势是,存取速度比堆要快,仅次于直接位于CPU中的寄存器。但缺点是,存在栈中的数据大小与生存期必须是确定的,缺乏灵活性。另外 ...
Global site tag (gtag.js) - Google Analytics