自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 资源 (20)
  • 问答 (1)
  • 收藏
  • 关注

原创 SQLite使用

一、SQLite介绍    1 简介 :轻量级的数据库,支持主流的操作系统(window,linux,unix),可以和很多语言交互(java,.net ,php ,c++ 等)并且速度比Mysql和postgreSQL都快  2 特点: 轻量级,尺寸小,不需要安装,文件单一(容易转移),跨平台,弱字段类型  ,开源   3 数据类型: 动态数据类型,可以根据存入的值来自动判断 ...

2015-02-26 18:30:36 142

原创 Service使用

 1 Service了解    主要作用处理一些好事的逻辑,或者执行某些需要长期运行的任务,必要的时候程序退出则Service可以在后台继续保持运行状态2 Service生命周期  onCreate ,onStartCommand ,onStart ,  onDestroy    Service开启的时候依次执行  onCreate ,onStartCommand ,onSta...

2015-02-26 11:44:23 56

原创 BroadcastReceiver的基本使用

  BroadcastReceiver: 广播的一种实现          个人理解: 当我们需要判断电池是否没电、收到短信、等一系列动作的时候,系统会发送相应的广播, 通知系统中所有捕获该广播的软件,软件可以做相应的动作 1 静态注册方式,就是在AndroidManifest.xml直接注册代码: 1) 创建一个类 并实现BroadcastReceiver  imp...

2015-02-25 18:21:00 86

原创 Gridview 视图控件的使用

  Gridview 使用  本例子主要用 :    1 SimpleAdapter 作为适配器加载List<Map>数据      2  BaseAdapter 加载List<Map>数据 两种形式作为适配器加载数据 package com.example.fragmentdemo1;import java.util.ArrayList;...

2015-02-13 10:09:39 126

原创 Listview控件使用

 Listview 功能:1)列表数据的展示  2)用户点击或选中处理 创建ListView大体步骤: 1)提供数据的List<Map> 2)创建adapter并关联相应的布局和数据  3)ListView设置相应的adapter 类型:1 普通的展示列表  2 带有单选和复选操作的展示列表  3 自定义每一行view的对象展示列表(可以显示图片等)4 使用BaseAda...

2015-02-12 16:49:16 116

原创 Android各种对话框的使用

1 普通对话框(喜欢,不喜欢,一般)2 输入“文本”后确定或取消3 对话框退出功能,确定是否退出4 带有单选按钮的弹出框使用 5 以列表形式,显示单选列表 6 以复选框的形式,展示的对话框  一、调用各种对话框的按钮xml <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:...

2015-02-12 10:40:29 98

原创 全屏与退出全屏

1 java代码,设置全屏显示  //全屏 public void setFullScreen( View view){ getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); } //退...

2015-02-11 13:50:08 379

原创 日期时间控件的使用

  1 经常用到日期时间控件选择日期和时间: java代码:package com.example.fragmentdemo1;import java.util.Calendar;import android.app.Activity;import android.app.DatePickerDialog;import android.app.TimePick...

2015-02-10 18:48:48 111

原创 组件加载html内容和组件文字样式设置

 有时候需要在页面上显示一些html标记的内容,这时候需要使用本节内容:Html.fromHtml("html内容")Html.fromHtml("html内容",imgGetter,null  ) //显示图片的话 SpannableString 的使用,这个类是1 显示普通的html内容2 显示图片内容 3 html内容中超链接标签生效  4 设置文字样式,...

2015-02-10 09:55:07 316

原创 XML布局的时候几种参数的理解

   1 android:layout_gravity ( 是本元素相对于父元素的重力方向 ) 即此容器对于父容器的位置(上、下、左右等等)2 android:gravity (是本元素所有子元素的重力方向即内容对其方向) 即子元素在这个容器的上、下、左右等等 3 android:orientation (线性布局以列或行来显示内部子元素)     android:or...

2015-02-06 15:01:17 171

原创 RadioGroup 和Radio的使用

 这里用一个实例,介绍radio的基本使用 :一个radioGroup中的两个radio,点击相应的,在textView中显示相应文字  1 String.xml中显示 <string name="tr_radio_op1">大头娘娘</string> <string name="tr_radio_op2">小头皇帝</str...

2015-02-06 13:59:53 553

原创 LayoutInflater的inflate方法学习

 1 inflate 和setContentView 区别   1) inflate 只是加载xml到内存中,不会显示到窗口,如果需要显示需要调用 setContentView(view);,未显示之前可以调用相应的方法对View进行修改  2) setContentView 如果调用了则View会直接显示到面板上     2 几个inflate方法的理解      1...

2015-02-06 13:35:42 133

原创 requestWindowFeature对title的设置

 开发中的 全屏、自定义标题、更改图标、和标题进度显示灯的处理 需要 requestWindowFeature 处理          1.DEFAULT_FEATURES:系统默认状态,一般不需要指定         2.FEATURE_CONTEXT_MENU:启用ContextMenu,默认该项已启用,一般无需指定         3.FEATURE_CUSTOM_TITL...

2015-02-05 17:14:14 90

原创 Handler和Message学习

 个人理解: Handler 关联主线程  Message 子线程通过Message传递消息与主线程沟通,主线程通过关联的Handler去处理子线程的Message   一个Handler会允许你发送和处理Message或者Runnable对象关联到一个线程的消息队列MessageQueue中,每一个Handler的实例都会关联一个单一的线程和那个线程的消息队列中。当你创建...

2015-02-05 16:30:08 108

python的一些学习资料,备用

一些chm的python学习资料,可以看看作为参考

2016-08-25

自己动手写网络爬虫

网上找的资源,内容还不错,主要描述一些爬虫基本知识。

2014-07-03

PowerDesigner15汉化+注册补丁

PowerDesigner15汉化+注册补丁 ,pd破解文件

2013-10-15

power designer 15破解文件

1 解压下载的文件 2 拷贝 pdflm15.dll 到power Designer相应的安装目录,覆盖原来的文件 3 打开power designer ,导入license.lic文件 破解成功。

2012-11-23

SQLPrompt SQL帮助工具

sqlserver 写sql的提示工具,很好用 ,分享给大家。

2012-09-28

ibatis文档

很全的 ibatis 文档,there are two kinds of document ,it is very full .

2012-07-19

时间控件DatePicker

DatePicker 是很强大的前端时间控件,里面有例子

2012-07-19

droiddraw工具

droiddraw ,android界面处理工具,点击直接就可以用,好东西

2012-06-11

Android开发教程

Android开发教程 ,非常清晰的 android 开发教程。

2012-06-05

android应用开发揭秘宝典

android应用开发揭秘宝典,清晰,讲解详细的书籍

2012-06-05

Java与模式(清晰书签版

Java与模式(清晰书签版) 很值得实用的文档。

2012-06-05

android应用开发揭秘

清晰实用的android开发学习电子书。

2012-06-04

jquery-validation 校验框架

很好用的校验框架 ,使用实例 http://www.cnblogs.com/c1230v/archive/2012/03/06/2382221.html

2012-06-04

spring技术手册(繁体版)

本书对spring对 其功能点做了详细摘录, 做了例子 ,并对事物, aop等等东西做了详细讲解

2011-10-11

spring 基础学习

本书详细介绍了 spring 的一些基本配置,和 其与一些框架的整合,是初学者学习的好帮手

2011-10-11

WebLogicServer11gCluster_SingleMachine.rar

高清的welogicserver 服务器文档,详细介绍了weblogc 的安装 发布, 初学者 得到很好参考

2011-10-11

Expert One-on-One J2EE Design and Development

 What is this book about? The results of using J2EE in practice are often disappointing: applications are often slow, unduly complex, and take too long to develop. Rod Johnson believes that the problem lies not in J2EE itself, but in that it is often used badly. Many J2EE publications advocate approaches that, while fine in theory, often fail in reality, or deliver no real business value. "Expert One-on-One: J2EE Design and Development" aims to demystify J2EE development. Using a practical focus, it shows how to use J2EE technologies to reduce, rather than increase, complexity. Rod draws on his experience of designing successful high-volume J2EE applications and salvaging failing projects, as well as intimate knowledge of the J2EE specifications, to offer a real-world, how-to guide on how you too can make J2EE work in practice. It will help you to solve common problems with J2EE and avoid the expensive mistakes often made in J2EE projects. It will guide you through the complexity of the J2EE services and APIs to enable you to build the simplest possible solution, on time and on budget. Rod takes a practical, pragmatic approach, questioning J2EE orthodoxy where it has failed to deliver results in practice and instead suggesting effective, proven approaches. What does this book cover? In this book, you will learn When to use a distributed architecture When and how to use EJB How to develop an efficient data access strategy How to design a clean and maintainable web interface How to design J2EE applications for performance Who is this book for? This book would be of value to most enterprise developers. Although some of the discussion (for example, on performance and scalability) would be most relevant to architects and lead developers, the practical focus would make it useful to anyone with some familiarity with J2EE. Because of the complete design-deployment coverage, a less advanced developer could work through the book along with a more introductory text, and successfully build and understand the sample application. This comprehensive coverage would also be useful to developers in smaller organisations, who might be called upon to fill several normally distinct roles. What is special about this book? Wondering what differentiates this book from others like it in the market? Take a look: It does not just discuss technology, but stress its practical application. The book is driven from the need to solve common tasks, rather than by the elements of J2EE. It discuss risks in J2EE development It takes the reader through the entire design, development and build process of a non-trivial application. This wouldn't be compressed into one or two chapters, like the Java Pet Store, but would be a realistic example comparable to the complexity of applications readers would need to build. At each point in the design, alternative choices would be discussed. This would be important both where there's a real problem with the obvious alternative, and where the obvious alternatives are perhaps equally valid. It emphasizes the use of OO design and design patterns in J2EE, without becoming a theoretical book ,高清文档 

2011-10-11

spring security

spring 安全在很多的企业项目中使用 这个事我自我调试过的 安全 项目,

2011-10-11

hibernate_api

chm 的hibernate api文档

2011-05-31

WebLogic学习文档

WebLogic学习资料。。。。 web开发的服务器技术

2011-04-25

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

TA关注的人

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