- 浏览: 100242 次
- 性别:
- 来自: 上海
最新评论
-
iswiitfk:
真是个好算法
分页算法中总页数的求法 -
chaodilei:
请问楼主从哪里抄过来的?
Eclipse下SSH集成(JPA) -
xiaowugegzh:
写的不错,QQ 418416015,聊聊技术啊,呵呵
计算出给定日期所在周的周一和周日 -
linhao315:
linhao315 写道在oracle 10g下注释没任何变动 ...
ibator改进,生成中文注释 -
linhao315:
在oracle 10g下注释没任何变动,而且1.2.1中去掉d ...
ibator改进,生成中文注释
文章列表
<h3>5. 如果您在***网预订过酒店,预订过的是几星级的酒店?(可多选)
</h3>
<div id="item5">
<input name="hotelStar" id="hotelStar-1" value="1" type="checkbox">经济型
<input name="hotelStar" id="hotelStar-2" value="2" type ...
The flexmojos goal "flexbuilder" does not configure the compiler
settings in FlexBuilder/FlashBuilder correctly. To be able to compile
and run the application in the Builder you have to set the compiler
settings similar to this:
-locale=en_US,de_DE -source-path=..\resources\local ...
过修改ibator1.2.2(http://svn.apache.org/repos/asf/ibatis/java/ibator)
1) 修改org.apache.ibatis.ibator.api.Ibator类,
方法private void writeFile(File file, String content) throws IOException
修改编码如下:
private void writeFile(File file, String content) throws IOException {
java.io.OutputStreamWriter fo ...
在开发数据驱动的Flex企业级开发中,会有很多数据通过JavaBean在Flex和java之间传输.
下面这个方法可以简单实现把javabean转换成flexbean.
package flex;
import java.lang.reflect.Field;
public class JavaBean2AsBean {
public static void toAsObject(Class clazz) {
StringBuilder sb = new StringBuilder();
sb.append("package ").app ...
网址:http://www.sonatype.com/books/maven-book//reference/flex-dev-sect-config-build.html
20.2. Configuring Build Environment for Flexmojos
Before you attempt to compile Flex libraries and applications with
Maven, you will need to complete two configuration task ...
安装Maven插件后
控制台出现:
Eclipse is running in a JRE, but a JDK is required
Some Maven plugins may not work when importing projects or updating source folders.
解决办法:
1. 修改eclipse.ini文件(添加红色部分):
--launcher.defaultAction
openFile-vm
C:\Java\jdk1.6.0_21\bin\javaw
-vmargs
-Dosgi.requiredJ ...
EL 全名为Expression Language,它原本是JSTL 1.0为方便存取数据所自定义的语言。当时EL只能在JSTL 标签中使用,如下:
<c:out value="${ 3 + 7}">
程序执行结果为10。但是你却不能直接在JSP 网页中使用:
< ...
本组件需要"Flex翻页控件
",我的另一篇文章有这个组件的详细代码 http://lj-zhu.iteye.com/admin/blogs/720582
.
在进行flex编程时,经常会用到在dataGrid中分布显示数据,但是在每个页面中都写一遍查询,显示,控制翻页的代码,既烦琐,又不美观,于是我就写一个比较通用的查询组件。
代码CommonQueryComponent.as:
package cn.zlj.component
{
import mx.collections.ArrayCollection;
import mx.contro ...
页面代码(FlexPager.mxml):
<?xml version="1.0" encoding="utf-8"?>
<mx:ControlBar xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%"
height="40"
horizontalAlign="right"
paddingRight="20"
...
blazeds源码:
http://opensource.adobe.com/svn//opensource/blazeds/tags/4.0.0/modules/core/src/
http://flexblog.faratasystems.com/tag/blazeds
解决方法1,修改blazeds中的类NumberDecoder.java 和类NativeDecoder.java
附件中为已修改好的 Blazeds3.2d的包。
在Maven 中使用(spring-flex)框架,自动下载的 blazeds-core-3.2.0.3978.jar 同样也需要替换 ...
[原文地址:http://nealmi.iteye.com/category/27197?show_full=true]
Flex Filter Explorer
http://merhl.com/flex2_samples/filterExplorer/
可以帮助你快速的生成Filter的代码.
Flex Style Explorer
http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html
可以帮助你快速的生成CSS的代码.可以导出CSS 文件
...
转载:http://blog.csdn.net/hxx688/archive/2009/06/10/4258765.aspx
FLEX权限--使用RemoteObject交互结合spring AOP控制项目权限教程
FLEX使用remoteobject交互结合spring AOP思想控制项目权限
本文介绍 ...
--摘自 《Oracle Pro*C 程序开发》 --Create/Modify Email:xingchengli@gmail.com
SQLDA 的结构如下:
struct SQLDA
{
long N; /* Descriptor size in number of entries */
char **V; Ptr to Arr of addresses of main variables */
long *L; /* Ptr to Arr of lengths of buffers */
sho ...
经常看到有人在web开发中的分页算法中用了一个长长的式子来算总页数:
totalPage = totalRecord % maxResult == 0 ? totalRecord / maxResult :
totalRecord / maxResult + 1 ;
其中总记录数是 totalRecord, 每页最大记录数是 maxResult
这么长的算式看起来都不是很爽呀。
这是个除法中的向上取整算式, 其实可以简化成这样:
totalPage ...
Flex3+blazeds3 + Spring BlazeDS1.05 + Spring2.5 集成。
没时间写文档了,先放个工程吧,myEclipse的工程,分为三个工程,实现前台后台可分开,可同时开发:
test_flex前台界面;
test_lib
一些公共组件,与Java通信用的bean等;
test_web后台代码
web访问url如
下:http://localhost:8080/main.html
测试工程功能: String sayHello(String),前台输入一个名字,调用后台,返回一个"Hello,名字".
Str ...