上一页 1 2 3 4 5 6 7 8 ··· 33 下一页
摘要: EBJ beans.xml<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop=" 阅读全文
posted @ 2012-05-05 20:39 j2ee技术 阅读(640) 评论(0) 推荐(0) 编辑
摘要: extjs3.3.1版本JsonStore代码var sexStore_para = new Ext.data.JsonStore({//对应类别store url:'/himp/related_user_info!getTheDataProvidedToComboboxAjax.action',//'/financeStaff.do?method=dictData', // root:'model', ... 阅读全文
posted @ 2012-05-05 10:21 j2ee技术 阅读(776) 评论(0) 推荐(0) 编辑
摘要: public static <T> List<T> copy(List<T> source) throws IllegalAccessException, InvocationTargetException, InstantiationException, NoSuchMethodException { //clone后的集合 List<T> temp=new ArrayList<T>(); for(T t:source){ //T temporary=(T) source.getClass().newInstan... 阅读全文
posted @ 2012-05-05 09:58 j2ee技术 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 【问题描述】手机程序中,菜单使用很普遍,JavaMe中,如何绘制菜单呢?下面分享一下实现的菜单功能,实现效果如图1所示:图1 菜单效果图【代码清单】Color.java(借鉴了kf156(亚日),J2ME canvas 多级菜单的实现)package com.token.view.components;/** * 颜色类 * * @author kf156(亚日) * * @Email kf156@QQ.com * * @CopyrightNotice 此代码仅供学习交流,您可以使用并传播本源代码,但请保留作者信息。切勿商用,若有需要,请先于本人联系。 */public class Co... 阅读全文
posted @ 2012-05-05 09:19 j2ee技术 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 关键字: js一、类型转换 1.转换成字串 ECMAScript的Boolean值、数字和字串的原始值的有趣之处在于它们是伪对象,这意味着它们实际上具有属性和方法。 如: Js代码varsColor="blue"; alert(sColor.length);//outputs"4"[js] view plaincopyvarsColor="blue";alert(sColor.length);//outputs"4"总而言之,3种主要的原始值Boolean值、数字和字串都有toString()方法。ECMAScri 阅读全文
posted @ 2012-05-04 13:35 j2ee技术 阅读(224) 评论(0) 推荐(0) 编辑
摘要: Convention Plugin原文:http://cwiki.apache.org/WW/convention-plugin.html翻译:石太祥(ealpha@gmail.comhttp://www.lalfa.com)·1Introduction·2Setup·3Converting a Codebehind based application to Convention·4Hello world·5Code behind hello world·6Results and result codes·7Chaining 阅读全文
posted @ 2012-05-04 12:58 j2ee技术 阅读(215) 评论(0) 推荐(0) 编辑
摘要: ### 指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration### 开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。# struts.configuration=org.apache.struts2.config.DefaultConfiguration### 设置默认的locale和字符编码# struts.locale=en_USstruts.i18n.encoding=UTF-8### 指定struts的工厂类# struts.objectFa 阅读全文
posted @ 2012-05-03 19:42 j2ee技术 阅读(116) 评论(0) 推荐(0) 编辑
摘要: package com.svse.upload;import java.io.FileOutputStream;import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.ServletInputStream;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;@SuppressW 阅读全文
posted @ 2012-05-03 13:17 j2ee技术 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 现在使用的版本extjs3.3.1在extjs中window加载的是一个jframe,而iframe中引入了js,在这个时候js不能运行,但是在火狐中是OK的,在IE6.0(开发中一般会使用IE6.0)不可以加载js,这个问题需要你加载完成之后重新reload()一下即可 var myHtml='<iframe id="ifrm008" name="ifrm008" scrolling="auto" frameborder="0" width="100%"height=" 阅读全文
posted @ 2012-05-03 13:06 j2ee技术 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 定义一字符串:String t = "hfjkds中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国hfsdkj<img src='sasa' /> fjldsajflkdsjaflkdsjalf <img src='sada' ait=''/>sfdsfadas";思路:先转为Unicode,然后转为GBK String utf8 = new String(t.getBytes( "UTF-8")); System.out.println(utf8); 阅读全文
posted @ 2012-05-03 11:28 j2ee技术 阅读(17183) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 33 下一页