- 浏览: 480513 次
- 性别:
- 来自: 福州
最新评论
-
学渣村的好村长:
很
java 列表转树形 -
wawj0819:
...
java 列表转树形 -
fireinjava:
LyAn_爱踢爱死 写道我有疑问,关于数组时你说collect ...
mybatis sql in 查询 -
LyAn_爱踢爱死:
我有疑问,关于数组时你说collection="ar ...
mybatis sql in 查询 -
yrsheng:
不行!楼主你真的试过吗?
Spring mvc 传递数组
文章列表
操作系统:CentOS 64-bitrpm -Uvh http://mirror.centos.org/centos/6/os/x86_64/Packages/ftp-0.17-53.el6.x86_64.rpm操作系统:CentOS 32-bitrpm -Uvh http://mirror.centos.org/centos/6/os/i386/Packages/ftp-0.17-53.el6.i686.rpm
1.oracle测试存储过程时date类型的赋值 如果系统时间是'yyyy/mm/dd',则输入2011/05/05
2.current_date与sysdate类似
declare i integer;begin dbms_output.put_line(current_date);end;
动态方法调用( DMI )通过在 action 名称和要调用的 Action 方法之间添加一个感叹号进行分割,以表示调用 action 中指定的方法(非 exeucte 方法)。
如:“category!create.action ”,表示调用 CategoryAction 中定义的 create 方法。
<action name="category" class="com.xx.yy.CategoryAction">...</action>
与普通的道理一样:
create.action
<action name ...
Oracle 10g模式对象名称的规则1)除了数据库链接名最多可以为128个字符之外,模式对象名最多为30个字符。2)保留字(例如SELECT)不能用作对象名。3)所有名称必须以从A到Z的一个字母打头。4)名称只能包含字母、数字、下划线(_)、美元符号($)hash符号(#)。5)小写字母会被转换为大写字母。
如果在双引号中封装名称,那么就不需要遵循上述所有规则(除了名称长度之外),但是随后获取这种对象时,必须始终使用双引号来指定对象。须要注意的是,列名也会应用相同的约束。
对象名总是区分大小写的。
转自http://hi.baidu.com/ljm0211/item/6d5b22437 ...
推荐个js图形开发库
http://raphaeljs.com
What is it?Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. If you want to create your own specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this library.
Raph ...
详见以下地址,可从右上角下载pdf离线版本,有自带的许多例子,解释地很详细,适合入门:
Adobe Flex 4.6教程 http://help.adobe.com/en_US/flex/using/index.html
ActionScript 3.0教程 http://help.adobe.com/en_US/as3/dev/index.html
java 列表转树形
- 博客分类:
- Java
往往要将数据库中的菜单配置转成树形结构展示到前台,这边提供一种二维树组转树形(同事那边看来的,很好用),以供参考:
数据库 id,name,parent_id
java对象:
private class TreeNode{
private String id;
private String name;
private String parentId;
private List<TreeNode> children;
// TODO getter/setter
}
树构造代码如下:
List<TreeNode> menuLis ...
mybatis sql in 查询
- 博客分类:
- mybatis
mybatis官方学习文档:http://www.mybatis.org/core/getting-started.html
本文转自:http://www.blogjava.net/xmatthew/archive/2011/08/31/355879.html
1. 当查询的参数只有一个时 findByIds(List<Long> ids) 1.1 如果参数的类型是List, 则在使用时,collection属性要必须指定为 list
<select id="findByIdsMap" resultMap="BaseResult ...
判断文件是否UTF-8编码
- 博客分类:
- Java
判断文件是否UTF-8编码:
对于UTF-8编码格式的文本文件,其前3个字节的值就是-17、-69、-65
InputStream fis = fileItem.getInputStream();
byte[] buf = new byte[fis.available()];
fis.read(buf);
fis.close();
if (buf[0] == -17 && buf[1] == -69 && buf[2] == -65) {//编码为UTF-8
String content = n ...
值区间示例:
select id from (select id from (SELECT rownum id from dual connect by rownum<= rpad(12,7,'9')) where id > rpad(12,7,'0')) a
(select id from (SELECT rownum id from dual connect by rownum<= rpad(12,7,'9')) where id > rpad(12,7,'0')) a
where not exists (select id FROM tab ...
openoffice安装卸载
- 博客分类:
- 电脑
Windows:
1.下载openoffice:http://www.openoffice.org/download/index.html
2.安装
3.启动服务,命令提示符窗口输入:
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
Linux:
openoffice解压后readmes/xx.html里面有说明对Linux版本、gclib版本的要求
(如OOO330_m20_native ...
转自 jQuery Iphone Style Ajax Switch
http://papermashup.com/jquery-iphone-style-ajax-switch/
<script type="text/javascript">
$('#1').iphoneSwitch("on",
function() {
alert('open');
//$('#ajax').load('on.html');
},
function() {
al ...
replaceAll比较特殊的用法介绍一个:
eg:把中括号及期内容替换成原先的再加Extra
"abc[def]".replaceAll("(\\[.*\\])", "$1Extra")
结果:abc[def]Extra
其中$1相当于matcher.group(1)的作用。附一个matcher的例子:
Pattern p3 = Pattern.compile("a(b*)(c*)d");
String candidateString3 = "abbccd abbbcccd&q ...
Flex Debug
- 博客分类:
- Flex
Flex的.mxml应用在Eclpise上Debug,下个最新版本的flashplayer_11_ax_debug.exe即可。
要在IE上跑,其它浏览器断点不到...(window->preference->General->Web Browser设置默认启动IE)
debug后链接后面自动了debug=true参数
http://localhost:8088/flexTest/EComm.html?debug=true
另外提供一个卸载flashplayer的工具,当安装flashplayer时提示“请安装更高版本flashplayer"时用