- 浏览: 460360 次
- 性别:
- 来自: 杭州
最新评论
-
和尚啊和尚:
和尚啊和尚 写道这个真的详细
request 获取各种路径 -
和尚啊和尚:
这个真的详细
request 获取各种路径 -
hujin19861102:
,做目视化看板!学习下先
java 操作 LED DLL 动态链接库 JNaitive -
桃花源记:
你这服务器结果没有处理啊,不能用的!
搜索提示 Suggest -
ihopethatwell:
楼主你写的这个除了 查询之外关闭了数据库,创建,插入,删除 的 ...
android 关系型数据库 SQLiteDatabase的 增 删 改 查
文章列表
translate( string1, string_to_replace, replacement_string )
string1 is the string to replace a sequence of characters with another set of characters.
string_to_replace is the string that will be searched for in string1.
replacement_string - All characters in the string_to_replace will be replaced ...
通过正则表达式来判断 某字段字符是否为数字
where regexp_like(name,'(^[+-]?\d{0,}\.?\d{0,}$)');
判断name字段是否为数字。
oracle中字符全角半角转换
length(aaa)!=lengthb(aaa)----此条件是查出哪些记录里含有全角字符
To_single_byte('881898?71') ---转成半角
To_multi_byte('881898?71') -----转成全角
//文件原地址
File oldFile = new File("c:/test.xls");
//文件新(目标)地址
String newPath = "c:/test/";
//new一个新文件夹
File fnewpath = new File(newPath);
//判断文件夹是否存在
if(!fnewpath.exists())
fnewpath.mkdirs();
//将文件移到新文件里
File fnew = new File(newPath +o ...
Jquery UI dialog 详解 (中文)
1 属性
1.11 autoOpen ,这个属性为true的时候dialog被调用的时候自动打开dialog窗口。当属性为false的时候,一开始隐藏窗口,知道.dialog("open")的时候才弹出dialog窗口。默认为:true。
1.12 初始化例:请注意,$('.selector')是dialog 的类名,在本例中.selector=#dialoag,以后不再说明。
$('.selector').dialog({ autoOpen: false });
1.13 初始化后,得到和设置此属性例:
...
以前常常以为margin 和 padding的区别,而老是google,现在理清了...
图解:
margin : 相当于组件的 外边缘 与外部组件的距离
padding : 相当于组件的 内边缘 与内部组件的距离
jQuery 和prototype 都是现在比较流行的Javascript开发框架,两者都拥有数量相当的粉丝,当然不排除同时喜欢使用两种框架的。但问题来了,由于jQuery以及 prototype都使用了美元符函数“$”作为选择器,在两者混合使用的时候$函数被重复定义了,结果导致其中一个框架不能使用。
<script src="http://jquery.com/src/latest/"></script>
<script type="text/javascript">
JQ = $; //r ...
<html>
<body>
<script language="javascript">
function showtime()
{
var today,hour,second,minute,year,month,date;
var strDate ;
today=new Date();
var n_day = today.getDay();
switch (n_day)
{
case 0:{
strDate = "星期日"
}break;
case 1:{
strDate = "星期一& ...
linxu 查看进程: ps -ef|grep kbcds.out
杀掉kbcds.out进程: killall -9 kbcds.out
还有一种 kill -9 进程pid
//主键549830479
alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id);
//增加一个新列549830479
alter table t2 add d timestamp;
alter table infos add ex tinyint not null default '0';
//删除列549830479
alter table t2 drop column c;
//重 ...
mysql的乱码问题一直比较头痛,由于它默认的字符集是latin,在数据库中执行mysql>SHOW VARIABLES LIKE 'character_set_%';
+--------------------------+----------------------------+
| Variable_name | Value |
+-------- ...
在Linux操作系统中
查看占用某一端口的进程是什么:#lsof -i:端口号
[root@oa test]# lsof -i:21
显示内容
实例
说明
BIOS
Version 1.10
(79ET61WW)
机器当前的BIOS版本
BIOS Date
(Year-Month-Day)
2006-05-24
当前BIOS版本
发布日期
Embedded
Controller Version
1.04
内嵌控制器的版本
(与对应的BIOS配合使用)
System-Unit
Serial Number
2007AT3L3AP778
2007:机型,AT3:Model,L3AP778:机身序列号
System Board
Serial
Nu ...
如果在struts2的struts.xml中用 java做包名来配置action就会报下面的错。
很奇怪
com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration
提Action class [java.welcome] not found 。
myEclipse默认打开JSP为什么会很慢呢?
这是MyEclipse的“自作聪明”的结果(它默认用Visual Designer来打开的),进行下列设置即可有效缓解之。
1. 要么右键单击文件,选择 Open With -》 MyEclipse JSP Editor 打开,这样不会采用可视化的打开,耗资源少,自动提示也非常快。
2. 要么采取一劳永逸的方法 Window -》 Preferences -》 General -》 Editors -》 File Associations
将默认打*.jsp的editor关联设置为MyEclipse JSP Editor
当 ...
登陆以后运行以下命令,给予远程访问客户端权限..
grant all on *.* to 'remote'@'xx.xx.xx.xx' identified by 'password';
flush privileges;
remote表示用户名.
'xx.xx.xx.xx' 远程ip地址
password表示远程登陆密码.