1.JPA根据实体类生成数据库表

2.程序员的10种级别

3.韩国语言键盘字符

4.artDialog形式ajax提交

art.dialog({
title: '提示',
content: "加载模板会覆盖首页的所有信息<br/>请确认加载新的模板!",
initialize: function () { },
okValue: '确定',
ok: function () {
var lock = art.dialog({title:'模板加载...', lock: true,close:false });
$.post(location.href,
{ action: "loaditem", value: names.join(',') },
function (json) {
if (json.error != 0) { proxy.error(json.msg); return; }
lock.close();
setTimeout(function() {
location.href = 'PageConfiguration.aspx';
}, 2000);
proxy.success("模板加载完成。");
});
},
cancel: true
});
5.jquery相关
1.隐藏所有包含连接的段落
$("p[a]").hide()
2.显示页面中的第一个段落
$("p:eq(0)").show()
3.隐藏当前显示的所有div
$("div:visible").hide()
4.获取ul下所有li项
$("ul / li") [注意这里面没有空格,是因为QQ的那该死的表情会自己出现] 或者$("ul>li")
5.获取所有样式为foo的包含连接的段落
$("p.foo[a]")
6.获取无序列表项中包含"BBB"文本的所有连接
$("li[a:contains('BBB')]")
7.获取那么属性为bar的input标签
$("input[@name=bar]")
8.获取所有选中的单选按钮
$("input[@type=radio][@checked]")
6.MySQL相关
①导出整个库的表结构
mysqldump -u root -p -d assess01>a.sql
②导出 表 test1,test2,test3 的 表结构 和 数据呢。
mysqldump -uroot -p -d databasename test1 test2 test3 > createtab.sql
③mysqldump -uroot -pjava csincity>20090115.sql回车即可,后面不要加分号,此时导出的为数据库中所有的数据。
④mysqldump -d -uroot -pjava csincity>20090115.sql
导出的为数据库中所有表的结构
⑤mysqldump -uroot -pjava csincity user>20090115.sql
导出的为数据库中user表的结构
⑥查看数据库show databases;使用数据库use databases; 查看表 show tables;看表结构 describe table;
7.对artdialog的封装函数
function openwin(id,url,title,width,height,lock,callback,topurl){
art.dialog.open(url, {
id:id,
title: title,
lock: lock,
width: width,
height: height,
cancel: true,
ok: function(){
var iframeWin = this.iframe.contentWindow;
var topWin = art.dialog.top;
if(callback || topurl){
if(callback){ //回调函数
callback.call(this, iframeWin, topWin, this);
this.close(); //关闭窗口
}else{
this.close(); //关闭窗口
topWin.location.href=topurl;
}
}else{
var form = iframeWin.document.getElementById('dosubmit');form.click();
}
return false;
}
});
}
var selid_artid = function(a, b, c) {
//var thisWin = art.dialog.open.origin; //本页窗体(父窗体)
//var thisWin = art.dialog.opener; //本页窗体(父窗体)
var id = a.$('input[name="sel_id"]:checked').val(); //获取子窗体里 元素值
$('#article_id').val(id);
//$('.aui_close').click(); //关闭窗体
//c.close(); //关闭窗体
//$.dialog({id: "sel_artid"}).close(); //关闭窗体
}
function open_artid(){
var art_id= $('#article_id').val();
var url = "{:U('Slide/select_ids')}&isajax=1&part=article&sid="+art_id;
openwin("sel_artid",url,"选择文章ID",500,300,true,selid_artid);
}
8.fushionCharts报表相关学习记录
博客参考http://www.cnblogs.com/tippoint/archive/2010/09.html
1.设置ToolTip的文本颜色
①注.apply:toObject为渲染对象例如ToolTip、trendLines、Caption、SubCaption、
②注.style:type为样式类型如font、animation、glow、Shadow、Blur、Bevel等
<styles>
<definition>
<style name='myToolTipFont' type='font' font='Verdana' size='12' color='C57B64'/>
</definition>
<application>
<apply toObject='ToolTip' styles='myToolTipFont' />
</application>
</styles>
3.chat标签内的相关属性
1>slantLabels="1" 倾斜显示
2>palette="4" 颜色调色板,数值不同颜色不同
3>legendPosition="BOTTOM" 图例位置RIGHT|LEFT|BOTTOM,可与chartrightmargin等搭配
4>placeValuesInside="1" 在柱形图内显示值
5>showPlotBorder="0" zGapPlot="30" zDepth="90"等组合设置三维图,可拖动旋转改变角度
6>zeroPlaneMesh="0" 零平面网
7>numDivLines="3" 图形中横线的条数
8>slicingDistance="35" startingAngle="190"炸圈饼Dougnut图表分解,开始角度190
9>showPercentageInLabel="1" 在图表中lable显示百分比而不是数字,与showPercentValues类似,与showLabels="0"搭配时只显示百分比
10>showSum="1" 图形条显示总数Stacked Bar 3D Chart三维堆积条形图
11>
9.正则表达式替换
public static void main(String[] args) {
String str = "恭喜你${username} ,你的密码是${param2}. 你的个人网址是${param3}.如果你有问题,请联系邮箱${param4}";
//Pattern pattern = Pattern.compile("(?<=\').*(?=\')");
Pattern pattern = Pattern.compile("\\$\\{(.*?)\\}");
Matcher m = pattern.matcher(str);
List<String> list = new ArrayList<String>();
while(m.find()){
list.add(m.group(1));
}
System.out.println(list.size());
for(String s:list){
System.out.println(s);
}
}
10.
实用技术汇总
8万+

被折叠的 条评论
为什么被折叠?



