自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(146)
  • 资源 (85)
  • 收藏
  • 关注

原创 enum使用一例

/** * User: renjunjie * Date: 13-6-25 下午4:43 * Function: */public class AppContants { //政府机构 //public static final Integer ORG_GOVERN = 1; //节能公司 //public static fina...

2013-08-15 17:59:58 156

原创 maven项目中部署项目到远程Tomcat服务器

pom配置<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version&g...

2013-08-15 14:52:28 310

原创 hibernate4调用存储过程

* Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2007-2011, Red Hat Inc. or third-party contributors as * indicated by the @author tags or express copyright attribution...

2013-08-14 18:24:39 202

原创 oracle函数返回结果集

参考资料http://blog.csdn.net/feiliu010/article/details/1538822 http://database.51cto.com/art/201004/194462.htm http://www.cnblogs.com/JavaCharp/archive/2010/03/26/1697266.html http://log-cd...

2013-08-13 15:28:56 151

原创 Mybatis与Hibernate共存项目调用存储过程

项目中同时使用Hibernate(用于权限的基础框架)+Mybatis(业务开发),最近用到Mybatis调用存储过程,这下问题可来了。开始在junit里面测试,不行,一直有一个空指针。junit的配置类package com.rixing;import org.junit.runner.RunWith;import org.springframework.test.co...

2013-08-13 15:16:41 264

原创 springmvc 使用中遇到的问题

1、Name for argument type [java.lang.String] not available, and parameter name information not found in class file either解决办法:http://jinnianshilongnian.iteye.com/blog/1705701eclipse默认是debug级别的函数里面...

2013-08-07 18:49:00 306

原创 maven jetty 插件的配置

maven jetty 插件的配置  jeety7和jeety9的配置有很大区别,看下面<!-- jetty 7插件, 设定context path与spring profile <plugin> <groupId>org.mortbay.jetty</groupId> ...

2013-08-06 09:27:32 169

原创 maven-jar-plugin 特殊用法

编译构建red5 发现server jar包含了boot里面的类,覆盖默认jar-plugin的打包方式  注意颜色加粗的地方 <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executio...

2013-08-04 18:20:10 790

原创 JVM Crash 学习分析

遇到如下错误 ## A fatal error has been detected by the Java Runtime Environment:## Internal Error (ad_x86_32.cpp:879), pid=26139, tid=1847638928# Error: Unimplemented()## JRE version: 6.0_...

2013-07-28 17:17:56 156

原创 Spring的 classpath 通配符加载配置文件

  classpath:app-Beans.xml说明:无通配符,必须完全匹配 classpath:App?-Beans.xml说明:匹配一个字符,例如 App1-Beans.xml 、 App2-Beans.xml classpath:user/*/Base-Beans.xml说明:匹配零个或多个字符串(只针对名称,不匹配目录分隔符等),例如:use...

2013-06-24 21:54:55 184

原创 Spring加载resource时classpath*:与classpath:的区别

Spring可以通过指定classpath*:与classpath:前缀加路径的方式从classpath加载文件,如bean的定义文件.classpath*:的出现是为了从多个jar文件中加载相同的文件.classpath:只能加载找到的第一个文件.比如 resource1.jar中的package 'com.test.rs' 有一个 'jarAppcontext.xml' 文件,内容如下:...

2013-06-24 21:52:05 111

原创 二代身份证读写遇到的问题

使用了新中新a16d读卡器,据说是最便宜了,也要1.3k了,真不便宜。在xp上面一切调试好后,在windows 64位上测试。发现不可以使用,安装了64位驱动也不可以。后来发现可以使用通用的调用方式http://www.cnblogs.com/name-lh/archive/2006/01/28/324003.html测试了确实是可以的。分析应该是新中新提供的dll不支持64...

2013-06-09 16:14:51 457

原创 springmvc 返回json格式错误

返回格式为"{\"code\":\"1\",\"message\":\"/upload/2013/065/d304dd96-8c74-43e5-b987-6b99f760be8d.JPG\"}"可以看出多了“\” 查找原因是只配置了MappingJacksonHttpMessageConverter 所以我返回json格式类型的字符串,有又经过了一层封装正确配置...

2013-06-05 17:30:54 204

原创 centos5.5 apache+svn安装配置

系统自带的centos卸载掉。重新安装参考http://www.iteye.com/topic/470516http://www.cnblogs.com/dengqiye/archive/2009/07/11/1521464.htmlhttp://read.newbooks.com.cn/info/181191.htmlhttp://altand.iteye.com/blo...

2013-04-28 23:04:28 71

原创 flex 递归树

import mx.collections.ArrayCollection; private var treeData:ArrayCollection=new ArrayCollection([ {id: 0,pid:-1,text:'0(0级)'}, {id: 1,pid:0,text:'1(一级)'}, {id: 2,pid:4,text:'2.1.1(...

2013-04-28 22:56:16 103

原创 mysql乱码解决

首先在新建数据库时一定要注意生成原数据库相同的编码形式,如果已经生成可以用phpmyadmin等工具再整理一次,防止数据库编码和表的编码不统一造成乱码。 方法一: 通过增加参数 –default-character-set = utf8 解决乱码问题 mysql -u root -p password < path_to_import_file –default-character-set...

2013-03-02 20:22:52 88

原创 maven nexus的使用

搭建maven私服,解决速度问题。我使用了一个破解的版本,遇到的小问题。1、索引问题开始以为不可用,就update index,等了好久发现下载了,但是还是不可以使用。配置{M2_HOME}/setting.xml,或者修改~/.m2/settings.xml.后者优先级大于前者,pom.xml的优先级最高了。 <profile> <id...

2013-02-18 14:36:08 116

原创 安裝 Apache Flex SDK 4.9

Flex SDK 4.9 是正式成為 Apache Flex 後第一個發布的版本由於 AIR SDK 相關的部分不包含在內,需要自行手動安裝以下做個紀錄 先分別下載好 Apache Flex 4.9 Binary 與 AIR SDK個別解壓縮之後,Merge 到同一目錄下,目錄名稱可以取作 4.9.0於 \frameworks 目錄下找到 flex-config.xm...

2013-01-11 09:41:17 211

原创 Maven Assembly插件介绍

你是否想要创建一个包含脚本、配置文件以及所有运行时所依赖的元素(jar)Assembly插件能帮你构建一个完整的发布包。Assembly插件会生成 “assemblies”, 此特性等同于的Maven 1distribution plug-in.。该插件不仅支持创建二进制归档文件,也支持创建源码归档文件。这些assemblies定义在一个assembly描述符文件里。你可以选择自定义ass...

2012-09-24 09:11:16 377

原创 Sublime Text 2的java编译输出

如果我在cmd或者Intellij下编译运行Java,不会有什么问题,但是在ST2下面会出现下面的错误:估计是javac在中文系统下输出信息用的是GBK编码,而ST2又不支持GBK的原因。如果我想得到下面的结果:则可以在ST2里面新建一个BuildingSystem(Tools–>Building System–>New Building System),...

2012-09-02 21:28:31 79

原创 PHPCMS伪静态设置方法小结

1.IIS 下伪静态设置  首先请下载以下附件: IIS Rewrite模块 附件:点击下载其中httpd.ini为配置文件内容如下: [ISAPI_Rewrite]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32# Protect httpd.ini and httpd.parse.errors ...

2012-08-27 14:00:37 262

java原样输出特殊符号

String str1 = "test\test\test\test\\";这个语句在java里面是不好原样输出,应为“\”作为转义符号使“\t”有了另外的含义。通过操纵assic 码可以实现原样输出@Test public void testApp1(){ int specialsymbols = 9; String str1 = "test\te...

2012-08-21 17:07:21 2406 1

原创 Oracle 横表和纵表

 前一段时间了解到的,今天有空写下,备忘~先来说说横表和纵坐表的概念,先来看看以下两图:第一张图就是横表,一行表示了一个实体记录,这就是我们传统的设计表的形式第二张图就是纵表,他的一行记录,是用于表示某个学生的属性名和属性值对应关系,像这边有两个属性(名字和性别),在纵表中就要用两条记录来表示一个学生。从上面可以观察出,横表的好处是清晰可见,一目了然,但是有一个弊端,如...

2012-08-17 21:07:03 302

原创 servlet request和response的模拟单元测试

项目采用分层开发,服务端和客户端。服务端的开发需要测试,但是涉及到了servletrequest和servletresponse。这里提供两种方法。1、easymock2、springmock第一种方法代码 package com.zzrenfeng.util;import org.apache.commons.logging.*;import org.juni...

2012-08-01 15:39:37 138

原创 Terracotta简单使用

 测试代码编写我们首先写一个demo,该demo在没有terracotta的环境下执行一次,看看结果我们首先先写一个简单的多线程代码(我们这个例子制定共享Main类的demo对象,它包含的count): package simpleparallel;public class Main implements Runnable{ private O...

2012-07-31 14:55:46 716

原创 突然断电oracle故障

开始时是这个错误,ora 12528:TNS:监听程序:所有适用例程都无法建立新连接然后配置了监听文件,Oraclelistener静态注册和动态注册, 现在改为静态监听 # listener.ora Network Configuration File: D:\oracle\product\10.2.0\db_1\network\admin\listener.ora#...

2012-07-30 14:54:35 469

原创 基于maven2打包不同jdk版本的包

指定修改jdk默认版本修改{M2_HOME}/conf/settings.xml来指定默认的jdk。 <profiles> <profile> <id>jdk-1.6</id> <activation> ...

2012-07-29 16:42:42 188

原创 导入maven项目出现 Unsupported IClasspathEntry kind=4

 Unsupported IClasspathEntry kind=4这个异常会导致项目无法使用eclipse4.2的maven功能,我升级了maven的版本还是不行  英文解释如下:Please see https://bugs.eclipse.org/bugs/show_bug.cgi?id=374332#c14The problem is caused by ...

2012-07-29 14:51:12 168

原创 Maven命令行来创建项目

 1)创建简单maven项目 mvn archetype:create   -DgroupId=cn.bluram  -DartifactId=javaWebCollect  -DarchetypeArtifactId=maven-archetype-quickstart mvn archetype:generate -DgroupId=cn.blueram -...

2012-07-28 23:29:00 85

原创 Import Maven Project to Eclipse and Fix the errors

使用mvn创建java项目eclipse导入报错 Multiple annotations found at this line: - Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven- resources-plugin 在pom.xml添加...

2012-07-28 22:55:50 80

原创 mina学习总结

 Mina使用起来多么简洁方便呀,就是不具备JavaNIO的基础,只要了解了Mina常用的API,就可以灵活使用并完成应用开发。首先,看Mina在项目中所处的位置,如下图:Mina处于中间层,它不关心底层网络数据如何传输,只负责接收底层数据,过滤并转换为Java对象提供给我们的应用程序,然后把应用程序响应值过滤并转换为底层识别的字节,提供给底层传输;------总之:Mina是...

2012-07-27 09:04:41 141

原创 阿里分布式框架dubbo学习

简单测试例子,附件 参考官方文档http://code.alibabatech.com/wiki/display/dubbo/User+Guide-zh#UserGuide-zh-%E5%BF%AB%E9%80%9F%E5%90%AF%E5%8A%A8

2012-07-24 15:28:49 108

原创 java系统间通信(分布式调用)

具体见附件的例子1、使用共享内存实现MappedByteBuffer在读和写的交互中,控制很重要2、rmi实现实现很简单,据说效率很高3、springrmi实现基本是使用spring的配置文件来实现。4、hessian实现很轻量,也很好实现,配置servlet来接收http的请求。5、spring-hessian没有实际测试,因为需要加入springm...

2012-07-24 10:27:27 295

原创 java中的多线程总结

多线程目录 <!--[if !supportLists]-->1、  <!--[endif]-->线程的简单介绍<!--[if !supportLists]-->2、  <!--[endif]-->线程的实现方式<!--[if !supportLists]-->3、  <!--[endif]-->Da...

2012-07-23 22:20:29 103

tomcat启用apr

 一、apr简单介绍tomcat6如果没配置APR,启动时会报这样的警告日志: 信息: The APR based Apache Tomcat Native library which allows optimal performanc e in production environments was not found on the java.library.path: D:\J...

2012-07-12 16:56:20 102

red5内嵌tomcat启用apr和gzip

最近看到tomcat 的优化,发现使用如果使用apr可以提供tomcat的静态资源访问能力,于是就试了试。tomcat很好实现,网上很多资料。但是red5由于是嵌入的tomcat,没有server.xml, 所有一时没有找到如何解决。查看tomcat源码,发现tomcat检测apr是否可用使用在server.xml的 <Listener className="org.apache.c...

2012-07-12 08:49:33 122

原创 flex捕获键盘长按事件

项目需要,在flex air中对长按键做出处理,我是这样定义长按键的。当键盘按下时记录按下状态isPressed=true;键盘弹起时isPressed=flase;添加计时器,长按5s,触发处理事件。 <?xml version="1.0" encoding="utf-8"?><s:WindowedApplication xmlns:fx="http:/...

2012-07-11 15:26:48 148

原创 (转)spring执行同步任务和异步任务

顾名思义:同步任务是指事情需要一件一件的做,做完当前的任务,才能开始做下一任务;异步任务是指做当前任务的同时,后台还可以在执行其他任务,可理解为可同时执行多任务,不必一件一件接着去做,下面开始上例子了 1.同步任务/* * @(#)SyncTaskExecutorTest.java 2011-4-27 * * Copyright (c) 2011. All Right...

2012-07-09 17:15:32 317

原创 idea生成错误

 自己打的jar包,idea引用。 第二次打的包和第一次的不一样,编译生成的代码居然没有覆盖掉。最后放在eclipse里面才找出问题。 后来看了idea的build里面有rebuild project可以重新清除编译。下次要这么使用。 ...

2012-07-04 21:47:45 90

原创 如何在 64 位 linux 机器上安装 jdk1.6?

也可以参考上篇博客《在Linux系统环境下安装配置JDK常用方法》,原理是一样的。之所以又写这篇,主要是看看老外的做法(虽然是阿三写的)。        JDK(Java Development Toolkit):        一个可以用来开发 Java 程序的软件包。这也是开发 Java 软件所必需的。        JRE(Java Runtime environment):        ...

2012-07-03 10:32:34 92

flex深入学习

非常不错的课件,从百度文库下载,和大家分享

2011-10-06

flex4/4.5开发必备插件

flex4/4.5插件 包括 sourcemate 快速开发和重构的插件 OpenExplorer 快速打开当前文件在资源管理器的位置 htmleditor html插件,小巧方便,用flex的必备

2011-08-15

flex4 实战 flex4 in action

flex4 实战 flex4 in action pdf源码和配套的源码 和大家分享

2011-08-06

flex4 权威指南 training from source

flex4 权威指南 training from source pdf原版书籍和配套的源码 和大家分享

2011-08-06

jdk1.7 java7 api chm

最新的jdk1.7的api,和大家分享 方便使用

2011-08-01

Hibernate-javadocs-3.6.0.final原版样式(不带索引).chm

Hibernate-javadocs-3.6.0.final原版样式(不带索引).chm

2010-11-12

struts2.2.1-API.chm (索引)

struts2.2.1-API.chm 方便实用,支持索引,提高工作效率 与大伙分享

2010-11-11

struts-1.3.10-docs.chm

struts-1.3.10-docs.chm 带索引 方便实用,分享给大家,最新版

2010-11-10

Spring Framework JavaDoc (3.0.5-release) (索引) chm

Spring3.0.5-RELEASE-API.chm 方便实用,分享给大家,最新版

2010-11-10

Hibernate-javadocs-3.6.0(索引) chm java通用api格式

Hibernate-javadocs-3.6.0.final.chm 最新版hibernate api 方便大家的使用

2010-11-10

FreeMarker2.3.16 中文手册

前言 什么是FreeMarker? FreeMarker是一款模板引擎:一种基于模板的、用来生成输出文本(任何来自于HTML格式的文用本来自动生成源代码)的通用工具。它是为Java程序员提供的一个开发包或者说是类库。它不是面向最终用户,而是为程序员提供的嵌入他们开发产品的一款应用程序。 FreeMarker实际上是被设计用来生成HTML网页,尤其是通过基于实现了MVC(Model View Controller,模型-视图-控制器)模式的Servlet应用程序。使用MVC模式的动态网页的构思是使得你可以将前端设计者(编写HTML)从程序员中分离出来。所有人各司其职,发挥其擅长的一面。网页设计师可以改写页面的显示效果而不受程序员编译代码的影响,因为应用程序的逻辑(Java 程序)和页面设计(FreeMarker 模板)已经分开了。页面模板代码不会受到复杂的程序代码的影响。这种分离的思想即便对一个程序员和页面设计师是同一个人来说的项目都是非常有用的,因为分离使得代码保持简洁而且便于维护。

2010-11-08

Java面试宝典2010版

这套面试题主要目的是帮助那些还没有java软件开发实际工作经验,而正在努力寻找java软件开发工作的朋友在笔试时更好地赢得笔试和面试。由于这套面试题涉及的范围很泛,很广,很杂,大家不可能一天两天就看完和学完这套面试宝典,即使你已经学过了有关的技术,那么至少也需要一个月的时间才能消化和掌握这套面试宝典,所以,大家应该早作准备,从拿到这套面试宝典之日起,就要坚持在每天闲暇之余学习其中几道题目,日积月累,等到出去面试时,一切都水到渠成,面试时就自然会游刃有余了。 答题时,先答是什么,再答有什么作用和要注意什么(这部分最重要,展现自己的心得) 答案的段落分别,层次分明,条理清晰都非常重要,从这些表面的东西也可以看出一个人的习惯、办事风格、条理等。 要讲你做出答案的思路过程,或者说你记住答案的思想都写下来。把答题想着是辩论赛。答题就是给别人讲道理、摆事实。答题不局限于什么格式和形式,就是要将自己的学识展现出来! 别因为人家题目本来就模棱两可,你就心里胆怯和没底气了,不敢回答了。你要大胆地指出对方题目很模糊和你的观点,不要把面试官想得有多高,其实他和你就是差不多的,你想想,如果他把你招进去了,你们以后就是同事了,可不是差不多的吗? 关于就业薪水,如果你是应届生,那不能要高工资,好比大饼的故事,没有文凭还想拿高工资,就去中关村缺什么补什么吧!少数人基础确实很好,在校期间确实又做过一些项目,那仍然是可以要到相对高的工资的。

2010-11-07

Pragmatic---Hello-Android-2nd-Edition--2009-.pdf

Android combines the ubiquity of cell phones, the excitement of open source software, and the corporate backing of Google and other Open Handset Alliance members. The result is a mobile platform you can't afford not to learn. This second edition is completely updated for Android 1.5 (Cupcake) and Android 1.6 (Donut). Android is a software toolkit for mobile phones, created by Google and the Open Handset Alliance. It's inside millions of cell phones and other mobile devices, making Android a major platform for application developers. That could be your own program running on all those devices. Getting started developing with Android is easy. You don't even need access to an Android phone, just a computer where you can install the Android SDK and the phone emulator that comes with it. Within minutes, "Hello, Android" will get you creating your first working application: Android's version of "Hello, World." From there, you'll build up a more substantial example: an Android Sudoku game. By gradually adding features to the game throughout the course of the book, you'll learn about many aspects of Android programming including user interfaces, multimedia, and the Android life cycle. This second edition has been completely revised for Android 1.5 (Cupcake) and Android 1.6 (Donut). Every page and example was reviewed and updated for compatibility with the new version. In addition, two new appendixes show you how to create Widgets for the Home screen and publish your application to the Android Market. If you're a busy developer who'd rather be coding than reading about coding, this book is for you. To help you find what you need to know fast, each chapter ends with a "Fast-Forward" section. These sections provide guidance for where you should go next when you need to read the book out of order.

2010-10-30

Professional-Android-2-Application-Development

Written by an Android authority, this up-to-date resource shows you how to leverage the features of Android 2 to enhance existing products or create innovative new ones. Serving as a hands-on guide to building mobile apps using Android, the book walks you through a series of sample projects that introduces you to Android’s new features and techniques. Using the explanations and examples included in these pages, you’ll acquire the foundation needed to write compelling mobile applications that use Android, along with the flexibility to quickly adapt to future enhancements. Professional Android 2 Application Development: ■Reviews Android as a development platform and¿best practices for mobile development ■Provides an in-depth look at the Android application components ■Details creating layouts and Views to produce compelling resolution independent user interfaces ■Examines Intents and Content Providers for sharing data ■Introduces techniques for creating map-based applications and using location-based services such as GPS ■Looks at how to create and use background Services, Notifications, and Alarms ■Demonstrates how to create interactive homescreen components ■Explores the Bluetooth, telephony, and networking APIs ■Examines using hardware, including the camera and sensors such as the compass and accelerometers

2010-10-30

CouchDB: The Definitive Guide: Time to Relax

Three of CouchDB’s creators show you how to use this document-oriented database as a standalone application framework or with high-volume, distributed applications. With its simple model for storing, processing, and accessing data, CouchDB is ideal for web applications that handle huge amounts of loosely structured data. That alone would stretch the limits of a relational database, yet CouchDB offers an open source solution that’s reliable, scales easily, and responds quickly. CouchDB works with self-contained data that has loose or ad-hoc connections. It’s a model that fits many real-world items, such as contacts, invoices, and receipts, but you’ll discover that this database can easily handle data of any kind. With this book, you’ll learn how to work with CouchDB through its RESTful web interface, and become familiar with key features such as simple document CRUD (create, read, update, delete), advanced MapReduce, deployment tuning, and more.

2010-10-07

MongoDB The Definitive Guide

How does MongoDB help you manage a huMONGOus amount of data collected through your web application? With this authoritative introduction, you’ll learn the many advantages of using document-oriented databases, and discover why MongoDB is a reliable, high-performance system that allows for almost infinite horizontal scalability. Written by engineers from 10gen, the company that develops and supports this open source database, MongoDB: The Definitive Guide provides guidance for database developers, advanced configuration for system administrators, and an overview of the concepts and use cases for other people on your project. Learn how easy it is to handle data as self-contained JSON-style documents, rather than as records in a relational database. Explore ways that document-oriented storage will work for your project Learn how MongoDB’s schema-free data model handles documents, collections, and multiple databases Execute basic write operations, and create complex queries to find data with any criteria Use indexes, aggregation tools, and other advanced query techniques Learn about monitoring, security and authentication, backup and repair, and more Set up master-slave and automatic failover replication in MongoDB Use sharding to scale MongoDB horizontally, and learn how it impacts applications Get example applications written in Java, PHP, Python, and Ruby

2010-10-07

C++ GUI Programming with Qt 4

The Only Official Best-Practice Guide to Qt 4 Programming Using Trolltech's Qt you can build industrial-strength C++ applications that run natively on Windows, Linux/Unix, Mac OS X, and embedded Linux--without making source code changes. With this book Trolltech insiders have written a start-to-finish guide to getting great results with the most powerful version of Qt ever created: Qt 4.1. Using C++ GUI Programming with Qt 4 you'll discover the most effective Qt 4 programming patterns and techniques as you master key technologies ranging from Qt's model/view architecture to Qt's powerful new 2D paint engine. The authors provide readers with unparalleled insight into Qt's event model and layout system. Then, using realistic examples, they introduce superior techniques for everything from basic GUI development to advanced database and XML integration. Includes new chapters on Qt 4's model/view architecture and Qt's new plugin support, along with a brief introduction to Qtopia embedded programming Covers all Qt fundamentals, from dialogs and windows to implementing application functionality Introduces best practices for layout management and event processing Shows how to make the most of Qt 4's new APIs, including the powerful new 2D paint engine and the new easy-to-use container classes Contains completely updated material in every chapter Presents advanced Qt 4 techniques covered in no other book, from creating both Qt and application plugins to interfacing with native APIs Contains an in-depth appendix on C++/Qt programming for experienced Java developers

2010-10-07

junit4.8.2 api chm

junit4.8.2 api chm 非常好用

2010-09-28

实用HTML,CSS和JavaScript速查表

刚刚看到了这个(实用HTML,CSS和JavaScript速查表), 然后下载就全部下载了,和大家分享 http://sd.csdn.net/a/20100921/279724.html Vikas曾发表过一篇博文《Most Useful Cheat Sheet For HTML, CSS and Javascript》,为我们总结了一些实用的HTML,CSS和JavaScript速查表,并把链接附上了。外刊IT评论对本文进行了翻译,现转载于此,供大家学习。全文如下: 速查表是帮你记住东西的有效工具。Web设计师和开发者经常使用的快捷键简表会使他们在网上的工作效率大大提高。 事实上,速查表就是来帮助我们把日常中最常用到的信息聚集起来,方便使用,使我们做工作时更有效率。有了它们,免去了你的大脑花额外时间去记忆它们的烦恼——你只需要打开简表,马上能查到你想要的信息。 这篇文章里,你可以看到最实用的HTML,CSS,JavaScript速查表,它们可以当作参考资料,备忘录,能帮助你以最快的速度找到想要的信息。 看看这些简表是不是你想要的,请在文章下面留下你的建议,谢谢!

2010-09-23

Spring Framework JavaDoc (3.0.4-release) chm

Spring Framework JavaDoc (3.0.4-release) chm 非常好用,非常方便

2010-09-21

html5手册 chm版本

html5手册 chm版本 非常不错 特别分享

2013-10-27

jQuery-1.9.1.chm

jQuery1.9.1 api chm 非常好用

2013-08-20

mybatis-spring1.2.1.chm

mybatis-spring1.2.1.chm

2013-08-20

mybatis3 手册 chm

mybatis3 手册 chm 最新官方用户手册

2013-08-20

mybatis3.2.4-api.chm

mybatis3.2.4-api.chm

2013-08-20

Javafx-2_2_25 API DOC chm

Javafx-2_2_25 API DOC chm

2013-08-20

Javase1.7.25 API DOC

Javase1.7 API DOC jdk1.7 最新的api,英文版,现在也没有中文的。

2013-08-20

hibernate4.2.4 api chm

hibernate4.2.4 api chm

2013-08-19

Spring3.2.4 API .chm

spring-framework-3.2.4.RELEASE-API 方便实用,分享给大家,最新版

2013-08-19

Apache Commons Javadoc

该项目将所有的 Apache Commons 中的项目里的 Javadoc 打包成了一个 chm 文档,使用非常方便。

2013-01-02

guava最新api(chm)

根据官方文档,整理完成chm版本,很好用

2012-09-23

flex4.6-api.chm

我见到过的最好用的flex4 chm api,非常完整,超级帮 最新Flex4.6中文API,离线帮助文档,无js错误

2012-07-23

struts2.3.4-core.chm

struts2.3.4-core-API.chm 方便实用,支持索引,提高工作效率 与大伙分享

2012-06-22

struts2.3.4-XWork-Core.chm

struts2.3.4-XWork-Core.chm 方便实用,支持索引,提高工作效率 与大伙分享

2012-06-22

spring-framework-3.1.1.RELEASE.chm

spring-framework-3.1.1.RELEASE-API 方便实用,分享给大家,最新版

2012-06-22

hibernate-4.1.4-final-API

hibernate-4.1.4-final-API.chm 方便实用,支持索引,提高工作效率 与大伙分享

2012-06-22

struts2.2.1-API.chm(带索引)

struts2.2.1-API.chm 方便实用,支持索引,提高工作效率 与大伙分享

2011-10-08

c++最新参考手册

c++标准库函数参考 c++最新参考手册

2011-10-06

DirectShow开发指南(含源码)

【书名】DirectShow开发指南 【作者】陆其明 【丛书名】DirectShow专业著作 【出版社】清华大学出版社 北京科海电子出版社 【书号】7-302-07650-2 【开本】16开 【页码】364 【出版日期】2003-12-1 【版次】1-1 【文件语言】 中文 【文件格式】 PDF 本书特色: ·本书完全忠实于DirectX SDK的帮助文档以及基类源代代码,并结合作者多年的实践,经过提炼而成;涉及的内容几乎涵盖了在Windows平台上使用DirectShow进行C++编码的方方面面 ·本书条理清晰,实用性强,适合广大的流媒体应用开发人员,以及对Windows平台上多媒体处理感兴趣的编程爱好者学习和参考

2011-10-06

21天学通C++ (英文和中文)

21天学通C++ 包括中文和英文,最新版

2011-10-06

空空如也

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

TA关注的人

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