自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(33)
  • 资源 (4)
  • 收藏
  • 关注

转载 android ListView美化-->几个比较特别的属性

android ListView美化-->几个比较特别的属性由于这两天在做listView的东西,所以整理出来一些我个人认为比较特别的属性,通过设置这样的属性可以做出更加美观的列表首先是stackFromBottom属性,这只该属性之后你做好的列表就会显示你列表的最下面,值为true和falseandroid:stackFromBottom="true"

2012-08-08 11:04:42 526

原创 张孝祥 java笔记

多线程:后台线程       Thread tt = new TestThread();                     tt.setDaemon(true);   //后台线程                     tt.start();合并线程:               tt.join();静态代码快,线程的同步问题,确保打印票数不会

2012-03-07 12:32:19 2271

原创 TableLayout解释

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:stretchColumns="0"> <Tex

2012-02-21 16:30:56 381

原创 Relative布局解释

<!-- android:layout_above 将该控件的底部至于给定ID的控件之上 android:layout_below 将该控件的顶部至于给定ID的控件之下 android:layout_toLeftOf 将该控件的右边缘和给定ID的控件的左边缘对齐 android:layout_toRightOf 将该控件的左边缘和给定ID的控件的右边缘对齐 and

2012-02-21 16:23:44 486

原创 Mar Activity的Intent 机制

package com.lee;import android.app.Activity;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListene

2012-02-20 11:44:44 306

原创 Java 基础一些代码练习笔记( GenericFoo<T> 泛型2)

package com.lee2;public class SimpleCollection{ private T[] objArr; private int index = 0; public SimpleCollection() { objArr = (T[]) new Object[10]; } public SimpleCollection(int capac

2012-01-12 16:02:23 578

原创 Java 基础一些代码练习笔记( GenericFoo<T> 泛型)

package com.lee2;public class GenericFoo{ private T foo; public T getFoo() { return foo; } public void setFoo(T foo) { this.foo = foo; } public static void main(String[] args) {

2012-01-12 11:16:06 573

原创 Java 基础一些代码练习笔记(Propertise环境变量)

package com.lee;import java.util.Iterator;import java.util.Properties;import java.util.Set;public class PropertiseTest{ public static void main(String[] args) { Properties p = System.getPro

2012-01-11 17:23:41 534

原创 Java 基础一些代码练习笔记(策略模式)

package com.lee;public interface Strategy{ public int calculate(int a , int b); }package com.lee;public class AddStrategy implements Strategy{ public int calculate(int a, int b) { re

2012-01-08 23:12:46 492

原创 Java 基础一些代码练习笔记(RandTest)

package com.lee;import java.util.ArrayList;import java.util.Collection;import java.util.Collections;import java.util.Iterator;import java.util.List;import java.util.Set;import java.util.TreeMa

2012-01-08 16:16:59 1876

原创 Java 基础一些代码练习笔记(HashMap)

package com.lee;import java.util.HashMap;import java.util.Iterator;import java.util.Set;public class MapTest3{ public static void main(String[] args) { HashMap map = new HashMap(); map

2012-01-06 16:43:06 705

原创 Java 基础一些代码练习笔记( Collectons)

import java.util.Collections;import java.util.Comparator;import java.util.Iterator;import java.util.LinkedList;public class CollectionsTest{ public static void main(String[] args) { LinkedL

2012-01-05 21:28:50 3397

原创 Java 基础一些代码练习笔记( TreeSet 排序)

import java.util.Comparator;import java.util.Iterator;import java.util.TreeSet;public class TreeSetTest2{ public static void main(String[] args) { TreeSet set = new TreeSet(new PersonComparat

2012-01-05 20:45:37 611

原创 Java 基础一些代码练习笔记( Interator)

import java.util.HashSet;import java.util.Iterator;public class InteratorTest{ public static void main(String[] args) { HashSet set = new HashSet(); set.add("a"); set.add("b"); set.a

2012-01-04 21:58:22 478

原创 Java 基础一些代码练习笔记(HashCode重写)

[com.lee.Student@aa9c3074]package com.lee;import java.util.HashSet;public class SetTest3{ public static void main(String[] args) { HashSet set = new HashSet(); Student s1 = new

2012-01-04 17:26:34 370

原创 Java 基础一些代码练习笔记(队列)

import java.util.LinkedList;public class MyQueue{ private LinkedList list = new LinkedList(); public void put(Object o) { list.addLast(o); } public Object get() { return list.removeF

2012-01-03 21:36:55 297

原创 Java 基础一些代码练习笔记(LinkedList)

import java.util.LinkedList;public class LinkListTest1{ public static void main(String[] args) { LinkedList list = new LinkedList(); list.add("F"); list.add("B"); list.add("D"); lis

2012-01-02 14:51:47 401

原创 Java 基础一些代码练习笔记(ArrayList)

package com.lee;import java.util.*;public class ArrayListTest1{ public static void main(String[] args) { ArrayList arrayList = new ArrayList(); arrayList.add("hello"); arrayList.add("wo

2011-12-30 14:59:10 654

原创 Java 基础一些代码练习笔记(二分查找)

public class ArraySearchTest{ /*public static int search(int[]array, int value) { for (int i = 0; i < array.length; i++ ) { if (value == array[i]) { return i; } } return -1; }

2011-12-29 15:07:04 495

原创 Java 基础一些代码练习笔记(数组复制)

数组复制public class ArrayCopy{ public static void main(String[] args) { int [] a = new int[]{1,2,3,4}; int [] b = new int[4]; System.arraycopy(a,0,b,0,4); /*public static void arraycopy(O

2011-12-28 14:35:15 349

原创 Java 基础一些代码练习笔记(ArrayEquals)

import java.util.Arrays;public class ArrayEquals{ public static boolean isEquals(int[] a , int[] b) { if (a == null || b == null) { return false; } if (a.length != b.length) { re

2011-12-27 16:37:43 872

原创 Java 基础一些代码练习笔记(Array二维数组)

public class ArrayTest5{ public static void main(String[] args) { int[] [] a = new int [][]{{1,2,3},{4},{5,6,7,8}}; for (int i = 0; i < a.length; i++ ) //数组的行 { for (int j = 0; j < a[i].l

2011-12-26 20:28:11 353

原创 Java 基础一些代码练习笔记(Array数组)

public class ArrayTest{ public static void main(String[] args) { int[] a = new int[4]; a[0] = 1; a[1] = 2; a[2] = 3; a[3] = 4; System.out.println(a[3]); System.out.println("--------

2011-12-26 11:43:13 402

原创 Java 基础一些代码练习笔记(Integer)

public class IntegerTest{ public static void main(String[] args) { int a = 10; Integer integer = new Integer(a); int b = integer.intValue(); System.out.println(a == b); }}

2011-12-25 16:14:16 322

原创 Java 基础一些代码练习笔记(StringBuffer)

public class StringBufferTest{ public static void main(String[] args) { StringBuffer buffer = new StringBuffer(); buffer.append("hello").append(" world").append(" welcome"); String result =

2011-12-25 15:40:23 390

原创 Java 基础一些代码练习笔记(object-equals 方法)

public class EqualsTest{ public static void main(String[] args) { Student s1 = new Student("zhangsan"); Student s2 = new Student("zhangsan"); System.out.println(s1 == s2); System.out.prin

2011-12-23 15:01:27 441

原创 Java 基础一些代码练习笔记(设计模式-单列模式)

public class SingletonTest{ public static void main(String[] args) { Singleton singleton = Singleton.getInstance(); //通过静态方法直接调用 Singleton singleton2 = Singleton.getInstance(); System.ou

2011-12-21 11:21:06 507

原创 Java 基础一些代码练习笔记(static 静态代码块)

public class StaticTest{ public static void main(String[] args) { new S(); new S(); }}class P{ static //静态代码块 { System.out.println("P static block"); } public P() { System.out.

2011-12-19 22:12:56 464

原创 Java 基础一些代码练习笔记(static 关键字)

public class StaticTest{ public static void main(String[] args) { /* MyStatic myStatic = new MyStatic(); MyStatic myStatic2 = new MyStatic(); myStatic.a = 10; System.out.println(myStat

2011-12-18 17:11:13 418

原创 Java 基础一些代码练习笔记(继承+接口+多态)

public class Test3{ public static void main(String[] args) { MyClass myClass = new MyClass(); myClass.output(); myClass.output2(); myClass.output3(); }}interface MyInterface{ public

2011-12-18 16:08:53 1009

原创 Java 基础一些代码练习笔记(抽象类)

public class Test2{ public static void main(String[] args) { Shape shape = new Triangle(10,6); int area = shape.computeArea(); System.out.println("triangle:" + area); shape = new Rectan

2011-12-17 11:14:00 453

原创 Java 基础一些代码练习笔记(多态2)

public class PolyTest5{ /*public void run(BMW bmw) { bmw.run(); } public void run(QQ qq) { qq.run(); }*/ public void run(Car car) { car.run(); } public static void main(String[] ar

2011-12-17 09:59:32 430

原创 Java 基础一些代码练习笔记(多态1)

public class PolyTest4{ public static void main (String[] args) { A a = null; if(args[0].equals("1")) { a = new B(); } else if(args[0].equals("2")) { a = new C(); } else if

2011-12-15 22:18:48 740

后盾网thinkphp许愿墙 完整源代码

后盾网thinkphp许愿墙 完整源代码 完美运行,和视频上一样

2014-02-23

HTML5 实战

作者:陶国荣(作者) 出版社: 机械工业出版社; 第1版 (2011年11月10日) 平装: 307页 开本: 16 -------------------- 前  言 第1章 拥抱HTML 5 /1 1.1 一个简单的HTML 5页面 /2 1.1.1 搭建支持的浏览器环境 /2 1.1.2 检测浏览器是否支持HTML 5标记 /2 1.1.3 使用HTML 5结构编写一个简单的Web页面 /4 1.2 HTML 5页面的特征 /6 1.2.1 应用全新的HTML 5特征结构化元素 /6 1.2.2 使用CSS文件美化HTML 5新元素 /9 1.3 本章小结 /10 第2章 HTML 5中常用的交互元素 /11 2.1 内容交互元素 /12 2.1.1 details 元素 /12 2.1.2 summary元素 /16 2.2 菜单交互元素 /17 2.2.1 menu元素 /17 2.2.2 command元素 /20 2.3 状态交互元素 /23 2.3.1 progress元素 /24 2.3.2 meter元素 /26 2.4 本章小结 /28 第3章 HTML 5中的重要元素 /29 3.1 html根元素 /30 3.2 文档元素 /32 3.3 脚本 /34 3.4 节点 /37 3.4.1 section 元素 /37 3.4.2 nav 元素 /38 3.4.3 hgroup 元素 /38 3.4.4 address 元素 /38 3.5 分组内容 /39 3.5.1 ul 元素 /39 3.5.2 ol 元素 /40 3.5.3 dl 元素 /41 3.6 文本层次语义 /42 3.6.1 time 元素 /42 3.6.2 mark 元素 /43 3.6.3 cite 元素 /45 3.7 嵌入内容 /46 3.7.1 img元素 /46 3.7.2 iframe元素 /47 3.7.3 object元素 /48 3.8 公共属性 /48 3.8.1 draggable属性 /48 3.8.2 hidden属性 /50 3.8.3 spellcheck属性 /51 3.8.4 contenteditable属性 /53 3.9 本章小结 /55 第4章 HTML 5中的表单 /57 4.1 input元素的新增类型 /58 4.1.1 email邮件类型 /58 4.1.2 url地址类型 /60 4.1.3 number数字类型 /62 4.1.4 range数字滑动条 /64 4.1.5 date日期类型 /66 4.1.6 search搜索类型 /69 4.2 input元素新增的公用属性 /71 4.2.1 autofocus 属性 /71 4.2.2 pattern 属性 /73 4.2.3 placeholder 属性 /75 4.2.4  required 属性 /76 4.3 新增表单元素 /78 4.3.1 datalist 元素 /78 4.3.2 output 元素 /80 4.3.3 keygen 元素 /81 4.4 表单新增的验证方法和属性 /83 4.4.1 checkValidity显式验证法 /83 4.4.2 使用setCustomValidity方法修改提示信息 /85 4.4.3 表单的novalidate属性 /87 4.5 本章小结 /89 第5章 HTML 5中的文件 /91 5.1 选择文件 /92 5.1.1 选择单个文件 /92 5.1.2 选择多个文件 /93 5.1.3 使用Blob接口获取文件的类型与大小 /95 5.1.4 通过类型过滤选择的文件 /97 5.1.5 通过accept属性过滤选择文件的类型 /99 5.2 使用FileReader接口读取文件 /101 5.2.1 FileReader 接口的方法 /101 5.2.2 使用 readAsDataURL方法预览图片 /101 5.2.3 使用 readAsText方法读取文本文件 /104 5.2.4 侦听FileReader接口中的事件 /106 5.3 使用DataTransfer对象拖放上传图片文件 /109 5.4 文件读取时的错误与异常 /112 5.4.1 发生错误与异常的条件 /112 5.4.2 错误代码说明 /113 5.5 本章小结 /114 第6章 HTML 5中的视频和音频 /115 6.1 多媒体元素基本属性 /116 6.1.1 元素格式 /116 6.1.2 width与height属性 /117 6.1.3 controls属性 /119 6.1.4  poster属性 /121 6.1.5 networkState 属性 /122 6.1.6 error 属性 /124 6.1.7 其他属性 /127 6.2 多媒体元素常用方法 /131 6.2.1 媒体播放时的方法 /131 6.2.2 canPlayType 方法 /133 6.3 多媒体元素重要事件 /136 6.3.1 媒体播放事件 /136 6.3.2 timeupdate 事件 /138 6.3.3 其他事件 /140 6.4 本章小结 /141 第7章 HTML 5绘图基础 /143 7.1 画布的基础知识 /144 7.1.1 canvas元素的基本用法 /144 7.1.2 绘制带边框矩形 /146 7.1.3 绘制渐变图形 /148 7.2 在画布中使用路径 /151 7.2.1 moveTo与lineTo的用法 /151 7.2.2 使用arc方法绘制圆形 /153 7.2.3 绘制渐变圆形 /157 7.3 对画布中图形的操作 /160 7.3.1 变换图形原点坐标 /160 7.3.2 组合多个图形 /163 7.3.3 添加图形阴影 /166 7.4 处理画布中的图像 /168 7.4.1 绘制图像 /168 7.4.2 平铺图像 /171 7.4.3 切割图像 /174 7.4.4 处理像素 /176 7.5 画布的其他应用 /179 7.5.1 绘制文字 /179 7.5.2 保存、恢复及输出图形 /182 7.5.3 制作简单的动画 /185 7.6 本章小结 /188 第8章 HTML 5中的数据存储 /189 8.1 Web Storage存储简介 /190 8.1.1 sessionStorage对象 /190 8.1.2 localStorage对象 /192 8.2 localStorage详解 /196 8.2.1 清空localStorage数据 /196 8.2.2 遍历localStorage数据 /199 8.2.3 使用JSON对象存取数据 /202 8.2.4 管理localStorage数据 /205 8.3 Web SQL数据库基础 /210 8.3.1 打开与创建数据库 /210 8.3.2 执行事务 /212 8.3.3 插入数据 /215 8.3.4 数据管理 /218 8.4 本章小结 /225 第9章 HTML 5中的离线应用 /227 9.1 离线应用程序 /228 9.1.1 manifest 文件简介 /228 9.1.2 配置IIS服务器 /229 9.1.3 离线应用的开发过程 /231 9.2 本地缓存的更新及状态检测 /233 9.2.1 updateready事件 /234 9.2.2 update方法 /236 9.2.3 swapCache方法 /239 9.2.4 更新本地缓存时触发的其他事件 /241 9.3 检测在线状态 /244 9.3.1 onLine 属性 /244 9.3.2 online 与offline事件 /246 9.3.3 离线数据交互应用开发过程 /249 9.4 本章小结 /254 第10章 HTML 5中的其他应用型API /255 10.1 Web Sockets API /256 10.1.1 postMessage方法 /256 10.1.2 使用WebSocket 传送数据 /260 10.1.3 使用WebSocket 传送JSON对象 /263 10.2 Geolocation API /267 10.2.1 使用 getCurrentPosition方法获取当前地理位置 /267 10.2.2 使用Google地图锁定位置 /273 10.3 Web Workers API /275 10.3.1 Worker对象处理线程 /276 10.3.2 使用线程传递JSON对象 /279 10.3.3 使用线程嵌套交互数据 /281 10.4 本章小结 /284 第11章 HTML 5中元素的拖放 /285 11.1 拖放基础 /286 11.1.1 使用JavaScript代码实现拖放 /286 11.1.2 在HTML 5中实现拖放时触发的事件 /288 11.2 dataTransfer对象应用详解 /291 11.2.1 使用setData与getData方法存入与读取拖放数据 /292 11.2.2 使用setDragImage方法设置拖放图标 /295 11.2.3 使用effectAllowed与dropEffect属性设置拖放效果 /297 11.3 拖放应用实战 /300 11.3.1 购物车的实现 /300 11.3.2 相册的管理 /304 11.4 本章小结 /307 实 例 目 录 实例1-1  检测浏览器是否支持HTML 5 /2 实例1-2  Hello,World页面的实现 /4 实例1-3  页面分栏实现 /6 实例1-4  样式化页面实现 /9 实例2-1  交互元素的使用 /13 实例2-2  用脚本控制交互元素的使用 /14 实例2-3  交互元素与的结合使用 /16 实例2-4  交互元素 的使用 /18 实例2-5  交互元素与 的结合使用 /20 实例2-6  交互元素的使用 /24 实例2-7  交互元素的使用 /26 实例3-1  元素的使用 /30 实例3-2  元素的使用 /33 实例3-3  元素

2013-05-15

张孝祥 深入体验Java_Web开发内幕-核心基础(part2)

张孝祥 深入体验Java_Web开发内幕-核心基础(part2) 用adobe pdf开

2012-04-08

Ubuntu 实用学习教程

Ubuntu 是一个完全以 Linux 为基础的操作系统, 可自由的获得,并提供社区和专业的支持 。Ubuntu 宣言:软件应免费提供,软件工具应能以人们本地语种的形式可用且不牺牲任何功能,人们 应拥有定制及改变他们软件的自由,这包括以任何他们认为适宜的方式。

2008-11-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除