- 浏览: 46535 次
- 性别:
- 来自: 深圳
最新评论
-
fhqiwcw:
public class MyMain {
publ ...
使用随机数打乱list顺序 -
侯上校:
顶一顶!!
ResourceBundle -
青春的、脚步:
关注!感谢分享
Spring的静态代理和动态代理 -
bitray:
因为韩国有三星,有自己的汽车。用什么日货啊。。。。。
抵制日货
文章列表
[置顶] 技术视频下载
- 博客分类:
- 资料链接以及来源
http://www.xuexi111.com/jiaocheng/shipin/26159.html
js视频
http://www.xuexi111.com/jiaocheng/ 通常技术视频
http://tieba.baidu.com/p/1999782814 开机动画制作
http://pan.baidu.com/s/1sjKx6bj#dir/path=%2Fjbpm4.4%E6%95%99%E7%A8%8B
jbpm视频教程下载
Echarts 第一篇
- 博客分类:
- 实例
http://echarts.baidu.com/ 数据报表
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 来自百度CDN -->
<script src="js/esl.js"></script>
</head>
<body>
<!-- 为ECharts准备一个具备大小(宽高)的Dom - ...
private GridData createGridData(int style, int horizontalSpan, int verticalSpan) {
GridData gridData = new GridData(style);
gridData.horizontalSpan = horizontalSpan;
gridData.verticalSpan = verticalSpan;
return gridData;
}
private GridData createGridDat ...
//生成一个简单的父面板
private Composite createOtherComp(Composite rightComp) {
Composite composite = new Composite(rightComp, SWT.NONE);
composite.setLayout(new FillLayout());
composite.setBackgroundImage(new Image(display, "D:\\test ...
public class SWTDemo {
StackLayout stackLayout = new StackLayout();
private Display display = new Display();
Shell shell = new Shell(display);
Composite yourDataComp;
Composite parentComp;
public SWTDemo() {
init();
}
private void init() {
shell.setText("swt demo");
shell.ope ...
属性(property)是您希望设置的样式属性(style attribute)。每个属性有一个值。属性和值被冒号分开。
selector {property: value}
例子:
在这个例子中,h1 是选择器,color 和 font-size 是属性,red 和 14px 是值。
h1 {color:red; font-size:14px;}
继承关系
body所拥有的属性(这些子元素诸如 p, td, ul, ol, ul, li, dl, dt,和 dd)。
body {
font-family: Verdana, sans-serif;
}
派生选择器
...
jquery学习
1.语法
jQuery 语法实例
$(this).hide()
演示 jQuery hide() 函数,隐藏当前的 HTML 元素。
$("#test").hide()
演示 jQuery hide() 函数,隐藏 id="test" 的元素。
$("p&qu ...
String time = super.getParamVal("time");
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String date =sdf.format(new Date(time)) ;
格式化字符串的时间
var str=document.getElementsByName("dd");
var len=str.length;
for(i=0;i<len;i++){ ...
java代码
http://arne3166.iteye.com/blog/792213
http://xinsheng.huawei.com/cn/index.php?app=forum&mod=Detail&act=index&id=860075 人工智能
http://xinsheng.huawei.com/cn/index.php?app=forum&mod=Detail&act=index&id=858645 买本本攻略
http://xinsheng.huawei.com/cn/index.php?app=forum&mod=Detail&a ...
public static void main(String[] args) {
JSONObject input = new JSONObject();
input.put("mm", "hhh");
JSONObject bodyjson = new JSONObject();
bodyjson.put("xmlpath", "E:/a.xml");
input.put("body", bodyjson.toString());
input.toString(); ...
使用随机数打乱list顺序
- 博客分类:
- 实例
List<Integer> myList = new ArrayList<Integer>();
List list=new ArrayList();
for (int i = 0; i <= size; i++) {
list.add("test"+i);
}
long start=System.currentTimeMillis();
for (int i = 0; i < list.size(); i++){
myList.add(i);
}
int[] arr = new int[siz ...
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses( {
a.class,
b.class,
})
public class AllTests {
}
这个是测试套 运行就会运行ab两个测试用例 一次性解决