自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (17)
  • 收藏
  • 关注

转载 Situations Where SQLite Works Well

Appropriate Uses For SQLiteSQLite is different from most other SQL database engines in that its primary design goal is to be simple: Simple to administer Simple to operate Simple to embed in

2008-08-04 17:44:00 449

转载 Java路径问题最终解决方案—可定位所有资源的相对路径寻址[转]

Java路径问题最终解决方案—可定位所有资源的相对路径寻址[转]前言Java的路径问题,非常难搞。最近的工作涉及到创建和读取文件的工作,这里我就给大家彻底得解决Java路径问题。我编写了一个方法,比ClassLoader.getResource(String 相对路径)方法的能力更强。它可以接受“../”这样的参数,允许我们用相对路径来定位classpath外面的资源。这样,我们就可以

2008-07-21 09:55:00 428

转载 DOM4j

import org.dom4j.Document; import java.util.List; import java.util.Iterator; import org.dom4j.Element; import org.dom4j.Attribute; import org.dom4j.io.SAXReader; import java.io

2008-07-21 09:33:00 509

转载 IBATIS

Apache WicketIBATISComment: Added in the link to the Spring framework DAO documentation for iBATIS, cleaned grammar a bit more.View page history var show = document.getElementById(sho

2008-07-09 13:30:00 800

转载 Oracle体系结构需要了解的两个概念

Oracle体系结构需要了解的两个概念   要了解oracle体系结构必须先了解两个基本的概念: 数据库和实例。  一 数据库  数据库(database)是一个数据集合。  无论数据库是采用关系结构还是面向对象结构, oracle数据库都将  其数据存放在数据文件中。 在其内部, 数据库结

2008-07-08 17:27:00 347

原创 让spring 同时加载类路径和当前路径中的文件

ApplicationContext ctx = null;  String[] configs={"classpath:bean/biz-datasource.xml","classpath:bean/biz-dao.xml","src/conf.test/bean/biz-ao.xml"};      ctx = new FileSystemXmlApplicationContex

2008-06-18 18:13:00 694

转载 [ibatis]动态映射

在复杂查询过程中,我们常常需要根据用户的选择决定查询条件,这里发生变化的并不只是SQL 中的参数,包括Select 语句中所包括的字段和限定条件,都可能发生变化。典型情况,如在一个复杂的组合查询页面,我们必须根据用户的选择和输入决定查询的条件组合。一个典型的页面如下:对于这个组合查询页面,根据用户选择填写的内容,我们应为其生成不同的查询语句。如用户没有填写任何信息即提交查询请求,我们应

2008-05-28 13:27:00 389

转载 利用 Ant 和 JUnit 进行增量开发

软件开发习惯中一个细微更改都可能会对软件质量产生巨大改进。将单元测试合并到开发过程中,然后从长远角度来看它可以节省多少时间和精力。本文通过使用代码样本说明了单元测试的种种好处,特别是使用 Ant 和 JUnit 带来的各种方便。测试是大型开发过程中的基本原则之一。在任何职业中,验证都是一个重要部分。医生要通过验血来确诊。波音公司在研制 777 的过程中对飞机的每个组件都进行了精心测试。为什么软

2008-05-27 17:15:00 346

原创 利用 Ant 和 JUnit 进行增量开发

软件开发习惯中一个细微更改都可能会对软件质量产生巨大改进。将单元测试合并到开发过程中,然后从长远角度来看它可以节省多少时间和精力。本文通过使用代码样本说明了单元测试的种种好处,特别是使用 Ant 和 JUnit 带来的各种方便。测试是大型开发过程中的基本原则之一。在任何职业中,验证都是一个重要部分。医生要通过验血来确诊。波音公司在研制 777 的过程中对飞机的每个组件都进行了精心测试。为什么软件开

2008-05-27 17:14:00 349

原创 JAVA格式化日期

Date dd = new Date(); //String zipName = dd.toLocaleString(); //得到一个中文的日期格式 SimpleDateFormat ss = new SimpleDateFormat("yyyy年MM月dd日kk时mm分ss秒");//其中yyyy-MM-dd是你要表示的格式 String zipName = ss.format(dd);

2008-05-27 14:19:00 411

原创 收集的一些正则表达式

1、非负整数:^/d+$ 2、正整数:^[0-9]*[1-9][0-9]*$ 3、非正整数:^((-/d+)|(0+))$ 4、负整数:^-[0-9]*[1-9][0-9]*$ 5、整数:^-?/d+$ 6、非负浮点数:^/d+(/./d+)?$ 7、正浮点数:^((0-9)+/.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*/.[0-9]+)|([0-9]*[1-9]

2008-05-27 14:15:00 487

原创 避免表单重复提交(js实现)

script language="javascript">       function submitForm(obj){            obj.disabled=true;            document.form1.submit();                    }    script>    BODY>

2008-05-27 14:13:00 404

原创 DWR实现级联

dwr2.0 web.xml配置: dwr-invoker org.directwebremoting.servlet.DwrServlet debug true classes java.lang.Object 100 dwr-invoker /dwr/* 操作类 public class DwrTest { @SuppressWarnings("unchecked") pub

2008-05-27 14:12:00 463

原创 ByteBuffer读取文件乱码

public class NioTest { /**  * @param args  */ public static void main(String[] args) {  // TODO Auto-generated method stub  try {   FileChannel fc = new FileInputStream("src/com/test/IOTest.java")  

2008-05-26 21:06:00 3152

转载 MyEclipse快捷键与插件大全

(1)Ctrl+M切换窗口的大小(2)Ctrl+Q跳到最后一次的编辑处(3)F2当鼠标放在一个标记处出现Tooltip时候按F2则把鼠标移开时Tooltip还会显示即Show Tooltip Description。          F3跳到声明或定义的地方。          F5单步调试进入函数内部。          F6单步调试不进入函数内部,如果装了金山词霸2006则要把“取词开关

2008-05-26 21:04:00 548

Ios Page Scroll demo

一个完善 的Image page Scroll app. 学习好帮手

2016-06-13

Sina News IOS

自己写的一个 采用Sina RSS作为数据源的IOS 移动端程序。里面包括了JSON解析,网络通讯,Tab分页,侧边栏等多个常用功能,练手和IOS学习的好资料

2016-06-02

How to config the Python develop environment

i write a document for how to config the Python 3.0 environment. it can help the Python newer

2015-08-24

深度探索C++对象模型

深度探索C++对象模型

2015-08-24

Modern C++ Design

Modern C++ Design c++设计新思维

2015-08-24

COM and .NET Component Services

COM and .NET Component Services Dedicat ion Foreword Preface Scope of This Book Some Assumpt ions About the Reader Definit ions and Text Convent ions Other COM+ Books and References How to Contact Us Acknowledgments 1. COM+ Component Services 1.1 COM+ Component Services 1.2 The Component Services Explorer 1.3 Hello COM+ 1.4 COM+ Configured Components 1.5 Applicat ions, DLLs, and Components 1.6 Configuring COM+ Applicat ions 1.7 Debugging COM+ Applicat ions 1.8 Deploying COM+ Applicat ions 1.9 Summary 2. COM+ Context 2.1 Encapsulat ion via Marshaling in COM 2.2 Encapsulat ion via I ntercept ion in COM+ 2.3 The Context Object 2.4 The Call Obj ect 2.5 Cross-Context Manual Marshaling 2.6 Summary 3. COM+ I nstance Management 3.1 Client Types 3.2 I nstance Management and Scaling 3.3 Object Pooling 3.4 Just - in-Time Act ivat ion 3.5 Combining JITA with Object Pooling 3.6 Object Const ructor St ring 3.7 COM+ I nstance Management Pit falls 4. COM+ Transact ions 4.1 Transact ion Basics 4.2 Transact ion Propert ies 4.3 Transact ion Scenarios 4.4 COM+ Transact ions Architecture 4.5 Configuring Transact ions 4.6 Vot ing on a Transact ion 4.7 Transact ional Object Life Cycle 4.8 Designing Transact ional Components 4.9 Nont ransact ional Clients 4.10 Transact ions and Object Pooling 4.11 Compensat ing Transact ions 4.12 Transact ion Execut ion Time 3 4.13 Tracing Transact ions 4.14 I n-Doubt Transact ions 4.15 Transact ion Stat ist ics 4.16 COM+ Transact ions Pit falls 5. COM+ Concurrency Model 5.1 Object -Oriented Programming and Mult iple Threads 5.2 Apartments: The Classic COM Solut ion 5.3 Act ivit ies: The COM+ I nnovat ion 5.4 COM+ Configurat ion Set t ings 5.5 Act ivit ies and JITA 5.6 Act ivit ies and Transact ions 5.7 Tracing Act ivit ies 5.8 The Neut ral Threaded Apartment 5.9 Summary 6. Programming the COM+ Catalog 6.1 Why Program the Catalog? 6.2 The Catalog Programming Model 6.3 Catalog St ructure 6.4 I nteract ing with the Catalog 6.5 Features of COMAdminCatalog 6.6 The COM+ Catalog and Transact ions 6.7 Summary 7. COM+ Security 7.1 The Need for Security 7.2 Basic Security Terms 7.3 Role-Based Security 7.4 Securing a Server Applicat ion 7.5 Securing a Library Applicat ion 7.6 Programmat ic Role-Based Security 7.7 Security Boundaries 7.8 Advanced COM+ Security 7.9 COM+ Security Pit falls 7.10 Summary 8. COM+ Queued Components 8.1 Major Benefits of Queued Components 8.2 Queued Components Architecture 8.3 Component Services Explorer Configurat ion 8.4 I nvoking Queued Components on the Client Side 8.5 Designing Queued Component I nterfaces 8.6 Receiving Output from a Queued Component 8.7 Queued Component Error Handling 8.8 Queued Components and Transact ions 8.9 Synchronous Versus Asynchronous Components 8.10 Queued Components Security 8.11 Queued Components Pit falls 8.12 Summary 9. COM+ Event Service 9.1 Classic COM Events 9.2 COM+ Event Model 9.3 The Event Class 9.4 Subscript ion Types 9.5 Delivering Events 4 9.6 Event Filtering 9.7 Dist ributed COM+ Events 9.8 Asynchronous Events 9.9 COM+ Events and Transact ions 9.10 COM+ Events and Securit y 9.11 COM+ Events Limitat ion 9.12 Summary 10. .NET Serviced Components 10.1 Developing Serviced Components 10.2 .NET Assemblies and COM+ Applicat ions 10.3 Registering Assemblies 10.4 Configuring Serviced Components 10.5 Applicat ion Act ivat ion Type 10.6 The Descript ion At t ribute 10.7 Accessing the COM+ Context 10.8 COM+ Context At t ributes 10.9 COM+ Object Pooling 10.10 COM+ Just - in-Time Act ivat ion 10.11 COM+ Const ructor St ring 10.12 COM+ Transact ions 10.13 COM+ Synchronizat ion 10.14 Programming the COM+ Catalog 10.15 COM+ Security 10.16 COM+ Queued Components 10.17 COM+ Loosely Coupled Events 10.18 Summary A. The COM+ Logbook A.1 Logbook Requirements A.2 Log File Example A.3 Using the Logbook A.4 Configuring the Logbook A.5 How Does the Logbook Work? A.6 Summary B. COM+ 1.5 B.1 Improved User I nterface Usability B.2 Legacy Applicat ions and Components B.3 Disabling Applicat ions and Components B.4 Pausing Applicat ions B.5 Service Act ivat ion Type B.6 Improved Queuing Support B.7 Applicat ion Pooling and Recycling B.8 Applicat ion Dump B.9 Applicat ion Part it ioning B.10 Aliasing Components B.11 Configurable Transact ion I solat ion Level B.12 Improved Context Act ivat ion Set t ing B.13 Private Components B.14 Web Services in COM+ 1.5 B.15 Summary C. I nt roduct ion to .NET C.1 .NET Programming Languages C.2 Packaging .NET Components: Assemblies C.3 Developing .NET Components 5 C.4 Writ ing .NET Client -Side Code C.5 .NET as a Component Technology C.6 Composing Assemblies Colophon

2010-05-29

COM and .NET Interoperability

Introduction Chapter 1 - Understanding Platform Invocation Services Chapter 2 - The Anatomy of a COM Server Chapter 3 - A Primer on COM Programming Frameworks Chapter 4 - COM Type Information Chapter 5 - The Anatomy of a .NET Server Chapter 6 - .NET Types Chapter 7 - .NET-to-COM Interoperability— The Basics Chapter 8 - .NET-to-COM Interoperability— Intermediate Topics Chapter 9 - .NET-to-COM Interoperability— Advanced Topics Chapter 10 - COM-to-.NET Interoperability— The Basics Chapter 11 - COM-to-.NET Interoperability— Intermediate Topics Chapter 12 - COM-to-.NET Interoperability— Advanced Topics Chapter 13 - Building Serviced Components (COM+ Interop)

2010-05-29

DotNetBookZero

What the C or C++ Programmer Needs to Know about C# and the .NET Framework

2009-11-25

ADVANCED WINDOWS DEBUGGING(English Full)

ADVANCED WINDOWS DEBUGGING Author: Mario Hewardt; Daniel Pravat

2009-10-30

Windows高级调试

Windows高级调试 中文前三章 第一章 调试工具简介 第二章 调试器简介 第三章 调试器揭密

2009-10-30

log4e

log4e eclipse插件 自动日志填充

2008-07-21

propertyEdit 插件

propertyEdit 插件

2008-07-21

mysql jdbc驱动

mysql jdbc驱动

2008-07-21

tomcat eclipse插件

tomcat eclipse插件

2008-07-21

Java Reflection in Action

详细透彻讲解java 反射原理,对想学习反射机制的人来说是好资料,英文

2008-07-21

Linux常用命令全集

Linux常用命令全集

2008-07-21

空空如也

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

TA关注的人

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