- 浏览: 376404 次
- 性别:
- 来自: 北京
最新评论
-
xujian19921202:
没有信用卡如何在iTunes注册帐号? -
sryijun:
虽然简单,但也明了,辛苦了
原创:oracle聚合函数介绍 <六> -
cnm493:
前台页面没有啊
原创:仿Baidu,Google查询分页技术JAVA实现 -
zczjdyj123:
读取页面,用字节流,再把字节数据转成特定编码字符,还是字节流好 ...
原创:ServletContext应用介绍总结 -
ljc19901124:
整合到一个参数 也报错,也没解决问题
public Ba ...
原创:Java反射java.lang.IllegalArgumentException: wrong number of arguments错误解析
文章列表
Android中应用界面布局介绍如下:
1.LinearLayout:是一种Android中最常用的布局之一,它将自己包含的子元素按照一个方向进行布局排列。
方向有两种:水平(Android:orientation="horizontal")和竖直(Android:orientation="vertical")
2.FrameLayout:一个FrameLayout对象好比一块在屏幕上提前预定好的空白区域,然后可以填充一些元素到里边,比方说一张图片等。需要注意的是所有元素都被放置在FrameLayout区域的左上的 ...
Android开发时,在layout中新建.xml文件时,R.java文件中不能自动生成对应的字段属性值
解决办法:看看那有没有大写的字母,在layout新建xml文件时,要满足Android的语法要求。
- 2009-10-13 14:59
- 浏览 5529
- 评论(0)
异常信息:
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 ...
- 2009-09-27 14:58
- 浏览 14181
- 评论(0)
经常我们要删除集合中的某些元素。有些可能会这么写。
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 ...
- 2009-09-26 16:52
- 浏览 2445
- 评论(0)
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 ...
- 2009-09-26 10:04
- 浏览 2471
- 评论(0)
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. ...
- 2009-09-24 16:16
- 浏览 11310
- 评论(0)
在导入war文件之前首先
新建项目
比如:webPorject
然后在Myeclipse中:
在File===》import==》General中选择Archive File
出现对话框
====>在Form archive file中选择你要导入的项目.war
=====>全选
=====>导入你新建立的项目
点击Finish
- 2009-09-16 11:04
- 浏览 10369
- 评论(5)
开发环境的搭建:
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
===当找到时 ...
- 2009-09-15 15:57
- 浏览 1594
- 评论(0)
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 ...
- 2009-09-15 15:50
- 浏览 2334
- 评论(0)
输出结果:
* * * * *
* * * * *
* * * * *
* * * * *
算法分析实现:
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(" " ...
- 2009-09-13 09:32
- 浏览 1139
- 评论(0)
1. 栈(stack)与堆(heap)都是Java用来在Ram中存放数据的地方,本文对其进行比较。
2. 栈的优势是,存取速度比堆要快,仅次于直接位于CPU中的寄存器。但缺点是,存在栈中的数据大小与生存期必须是确定的,缺乏灵活性。另外 ...
- 2009-09-13 08:04
- 浏览 1013
- 评论(0)