自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (25)
  • 收藏
  • 关注

原创 ubuntu 64 bit cannot run adb

Linux下Android SDK中adb找不到的解决方案 Unexpected exception 'Cannot run program "/home/ubuntu/adt/sdk/platform-tools/adb": error=2 No such file or directory' while attempting to get adb version from /home

2013-09-29 21:59:27 1076

原创 android 修改listview item view 的方法

前段时间,做项目的时候,遇见一个问题,就是通过线程请求数据,然后并实时更新ui(listview 中的每一项)。 遇到的问题我在之前的一个帖子里面有描述 。可能是我描述的不清楚,也没有朋友解答。 具体的解答办法很简单: 代码如下 : 1.获取需要更新的view int visiblePosition = mListView.getFirstVisiblePosition();

2013-09-29 15:22:39 8626 3

原创 android webService 异步访问

android 使用webservices 需要注意几个问题,这也是我在项目中遇到的,总结一下,和大家分享 1.在AndoirdManifest.xml添加网络访问权限。 2.android访问webServices的代码编写。 3.android使用webService的代码不能放在主线程(uI)线程。如果必须要放在主线程可以使用StrictMode。下面具体说明。 4.android使

2013-09-03 09:06:38 4564 7

java 核心技术 第一卷 chm

Prentice Hall PTR - Core Java 2 Volume I 7th Edithon。这本java核心技术,是java权威书籍,本自由是第一卷:基础篇,chm ,英文。上传和大家分享。以期共同进步。 本书的目录如下: Chapter 1. An Introduction to Java Java as a Programming Platform The Java "White Paper" Buzzwords Java and the Internet A Short History of Java Common Misconceptions About Java Chapter 2. The Java Programming Environment Installing the Java Development Kit Choosing a Development Environment Using the Command-Line Tools Using an Integrated Development Environment Compiling and Running Programs from a Text Editor Running a Graphical Application Building and Running Applets Chapter 3. Fundamental Programming Structures in Java A Simple Java Program Comments Data Types Variables Operators Strings Input and Output Control Flow Big Numbers Arrays Chapter 4. Objects and Classes Introduction to Object-Oriented Programming Using Predefined Classes Defining Your Own Classes Static Fields and Methods Method Parameters Object Construction Packages Documentation Comments Class Design Hints Chapter 5. Inheritance Classes, Superclasses, and Subclasses Object: The Cosmic Superclass Generic Array Lists Object Wrappers and Autoboxing Reflection Enumeration Classes Design Hints for Inheritance Chapter 6. Interfaces and Inner Classes Interfaces Object Cloning Interfaces and Callbacks Inner Classes Proxies Chapter 7. Graphics Programming Introducing Swing Creating a Frame Positioning a Frame Displaying Information in a Panel Working with 2D Shapes Using Color Using Special Fonts for Text Doing More with Images Chapter 8. Event Handling Basics of Event Handling The AWT Event Hierarchy Semantic and Low-Level Events in the AWT Low-Level Event Types Actions Multicasting Implementing Event Sources Chapter 9. User Interface Components with Swing The Model-View-Controller Design Pattern Introduction to Layout Management Text Input Choice Components Menus Sophisticated Layout Management Dialog Boxes Chapter 10. Deploying Applets and Applications Applet Basics The Applet HTML Tags and Attributes Multimedia The Applet Context JAR Files Application Packaging Java Web Start Storage of Application Preferences Chapter 11. Exceptions and Debugging Dealing with Errors Catching Exceptions Tips for Using Exceptions Logging Using Assertions Debugging Techniques Using a Debugger Chapter 12. Streams and Files Streams The Complete Stream Zoo ZIP File Streams Use of Streams Object Streams File Management New I/O Regular Expressions Chapter 13. Generic Programming Why Generic Programming? Definition of a Simple Generic Class Generic Methods Bounds for Type Variables Generic Code and the Virtual Machine Restrictions and Limitations Inheritance Rules for Generic Types Wildcard Types Reflection and Generics java 核心技术共两卷,为了方便大家下载,再次我给出第二卷的下载地址: http://download.csdn.net/source/3401581

2011-06-28

java 核心技术 第二卷 高级篇chm

java核心技术 (Core Java Volume II 7th Edition) 这本书是java 的经典书籍,有两卷,本资源是第二卷,第七版。本书是chm版的,英文的,拿出来和大家分享,以期共同进步。 本书的内容目录如下: List of Code Examples Preface To the Reader About This Book Conventions Acknowledgments Chapter 1. Multithreading What Are Threads? Interrupting Threads Thread States Thread Properties Synchronization Blocking Queues Thread-Safe Collections Callables and Futures Executors Synchronizers Threads and Swing Chapter 2. Collections Collection Interfaces Concrete Collections The Collections Framework Algorithms Legacy Collections Chapter 3. Networking Connecting to a Server Implementing Servers Sending E-Mail Making URL Connections Advanced Socket Programming Chapter 4. Database Programming The Design of JDBC The Structured Query Language JDBC Installation Basic JDBC Programming Concepts Query Execution Scrollable and Updatable Result Sets Metadata Row Sets Transactions Advanced Connection Management Introduction to LDAP Chapter 5. Distributed Objects The Roles of Client and Server Remote Method Invocations Setup for Remote Method Invocation Parameter Passing in Remote Methods Server Object Activation Java IDL and CORBA Remote Method Calls with SOAP Chapter 6. Advanced Swing Lists Trees Tables Styled Text Components Progress Indicators Component Organizers Chapter 7. Advanced AWT The Rendering Pipeline Shapes Areas Strokes Paint Coordinate Transformations Clipping Transparency and Composition Rendering Hints Readers and Writers for Images Image Manipulation Printing The Clipboard Drag and Drop Chapter 8. JavaBeans Components Why Beans? The Bean-Writing Process Using Beans to Build an Application Naming Patterns for Bean Properties and Events Bean Property Types BeanInfo Classes Property Editors Customizers JavaBeans Persistence Chapter 9. Security Class Loaders Bytecode Verification Security Managers and Permissions Digital Signatures Code Signing Encryption Chapter 10. Internationalization Locales Number Formats Date and Time Collation Message Formatting Text Files and Character Sets Resource Bundles A Complete Example Chapter 11. Native Methods Calling a C Function from the Java Programming Language Numeric Parameters and Return Values String Parameters Accessing Fields Encoding Signatures Calling Java Methods Accessing Array Elements Handling Errors Using the Invocation API A Complete Example: Accessing the Windows Registry Chapter 12. XML Introducing XML Parsing an XML Document Validating XML Documents Locating Information with XPath Using Namespaces Using the SAX Parser Generating XML Documents XSL Transformations Chapter 13. Annotations Addition of Metadata to Programs An Example: Annotating Event Handlers Annotation Syntax Standard Annotations The apt Tool for Source-Level Annotation Processing Bytecode Engineering java 核心技术共两卷,第一卷为基础篇,为了方便大家下载再次我给出第一卷的下载地址:http://download.csdn.net/source/3401610

2011-06-28

一本android的好书beginning android 2 和 源码

android好书系列,我目前找了两本,先贡献给大家。以后如果有好的资源,再上传和大家分享。 本资源是第一本。 这是一本学习android的好书,我浏览了,是老外著的,高清晰的pdf。为了方便大家学习android,我将本书所附的源码一块打包了。方便了不少,如果觉得好就顶一下吧,大家共同进步。 另外一本pro android 的下载地址: http://download.csdn.net/source/3139707 本书的目录结构如下: Chapter 1: The Big Picture Challenges of Smartphone Programming What Androids Are Made Of Stuff at Your Disposal ■Chapter 2: Projects and Targets Pieces and Parts Creating a Project Project Structure Root Contents The Sweat Off Your Brow And Now, the Rest of the Story What You Get Out of It Inside the Manifest In the Beginning, There Was the Root, And It Was Good Permissions, Instrumentations, and Applications (Oh My!) Your Application Does Something, Right? Achieving the Minimum Version=Control Emulators and Targets Virtually There Aiming at a Target ■Chapter 3: Creating a Skeleton Application Begin at the Beginning Dissecting the Activity Building and Running the Activity ■Chapter 4: Using XML-Based Layouts What Is an XML-Based Layout? Why Use XML-Based Layouts? OK, So What Does It Look Like? What’s with the @ Signs? And How Do We Attach These to the Java? The Rest of the Story ■Chapter 5: Employing Basic Widgets Assigning Labels Button, Button, Who’s Got the Button? Fleeting Images Fields of Green Or Other Colors Just Another Box to Check Turn the Radio Up It’s Quite a View Useful Properties Useful Methods Colors ■Chapter 6: Working with Containers Thinking Linearly LinearLayout Concepts and Properties LinearLayout Example All Things Are Relative RelativeLayout Concepts and Properties RelativeLayout Example Tabula Rasa TableLayout Concepts and Properties TableLayout Example Scrollwork ■Chapter 7: Using Selection Widgets Adapting to the Circumstances Lists of Naughty and Nice Spin Control Grid Your Lions (or Something Like That) Fields: Now with 35% Less Typing! Galleries, Give or Take the Art ■Chapter 8: Getting Fancy with Lists Getting to First Base A Dynamic Presentation Better Stronger Faster Using

2011-06-08

sql server 2005 技术内幕 T-SQL 查询 源码

这个资源是《Microsoft SQL Server 2005 技术内幕 T-SQL》附带的源码。 为了方便下载《Microsoft SQL Server 2005 技术内幕》这本中文的pdf电子书,下面给出下载这本书的地址: 因为上传大小权限的限制,将压缩卷分为四个部分 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 第四部分的下载地址:http://download.csdn.net/source/2922769

2010-12-22

sql server 2005 技术内幕 T-SQL查询 中文清晰pdf part4

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL查询》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第四部分。 其他三部分的地址为: 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL程序设计》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-20

sql server 2005 技术内幕 T-SQL查询 中文清晰pdf part3

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL查询》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第三部分。 其他三部分的地址为: 第一部分:http://download.csdn.net/source/2922760 第二部分:http://download.csdn.net/source/2922763 第四部分:http://download.csdn.net/source/2922769 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL程序设计》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-20

sql server 2005 技术内幕 T-SQL查询 中文清晰pdf part2

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL查询》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第四部分。 其他三部分的地址为: 第一部分:http://download.csdn.net/source/2922760 第三部分:http://download.csdn.net/source/2922766 第四部分:http://download.csdn.net/source/2922769 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL程序设计》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-20

sql server 2005 技术内幕 T-SQL查询 中文清晰pdf part1

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL查询》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第第一部分。 其他三部分的地址为: 第二部分:http://download.csdn.net/source/2922763 第三部分:http://download.csdn.net/source/2922766 第四部分:http://download.csdn.net/source/2922769 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL程序设计》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-20

sql server 2005 技术内幕 T-SQL程序设计 中文清晰pdf part4

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL程序设计》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第四部分。 其他三部分的地址为: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL查询》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 第四部分的下载地址:http://download.csdn.net/source/2922769 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-18

sql server 2005 技术内幕 T-SQL程序设计 中文清晰pdf part3

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL程序设计》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第三部分。 其他三部分的地址为: 第一部分的下载地址:http://download.csdn.net/source/2918919 第二部分的下载地址:http://download.csdn.net/source/2918920 第四部分的下载地址:http://download.csdn.net/source/2918925 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL查询》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 第四部分的下载地址:http://download.csdn.net/source/2922769 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-18

sql server 2005 技术内幕 T-SQL程序设计 中文清晰pdf part2

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL程序设计》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第二部分。 其他三部分的地址为: 第一部分的下载地址:http://download.csdn.net/source/2918919 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL查询》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 第四部分的下载地址:http://download.csdn.net/source/2922769 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-18

sql server 2005 技术内幕 T-SQL程序设计 中文清晰pdf part1

学习sql server 和sql 的两本经典的著作: 《sql server 2005 技术内幕 T-SQL查询》 《sql server 2005 技术内幕 T-SQL程序设计》 网上大多的资源都是英文的,好容易找到中文的了,上传上来和大家分享。 这两本书都是中文的(很不容易哟),是高清晰的pdf格式。 本资源是《sql server 2005 技术内幕 T-SQL程序设计》 强烈推荐大家下载,读完这本书,可以看看顶级大牛是怎样写sql的。 因为上传大小权限的限制,将压缩卷分为四个部分,这是第一部分。 其他三部分的地址为: 第二部分的下载地址:http://download.csdn.net/source/2918920 第三部分的下载地址:http://download.csdn.net/source/2918923 第四部分的下载地址:http://download.csdn.net/source/2918925 为了方便大家下载我特意也将《sql server 2005 技术内幕 T-SQL查询》的下载地址也列出来: 第一部分的下载地址:http://download.csdn.net/source/2922760 第二部分的下载地址:http://download.csdn.net/source/2922763 第三部分的下载地址:http://download.csdn.net/source/2922766 第四部分的下载地址:http://download.csdn.net/source/2922769 /******************************************************************************/ 友情提醒:对于每一个资源必须下载完所有的部分(压缩卷),才能解压缩成功。 /******************************************************************************/

2010-12-18

sql 大全——学习sql的绝好资料

是学习sql 绝好的资料。这个是对常用的sql 语句的总结,没有什么说的好东西拿出来分享。严重推荐!

2010-12-02

软件开发常用技术总结chm

这是在多年软件开发过程中的通用技术的总结。包括vb sql语句,分页 ,报表等技术。实用性很强。严重推荐给大家。

2010-11-11

pl sql 手册中文版 7.0

这是pl sql 手册 7.0 的中文版,pdf 格式的。对于想深入挖掘pl sql的朋友,是个不错的教程。特此推荐给大家

2010-09-20

javascript 内核系列

这是一本比较深入的javascript方面的参考书:闭包,对象与json面向对象的javascript。

2010-09-07

屏幕录像专家7.5完美破解版

这是一个完美破解的屏幕录像专家,7.5版本的。破解之后,没用任何限制,在网上找了很久找到的。推荐给大家。

2010-09-06

dojo中文教程 是学习dojo ajax的好教程

这是一个dojo教程,非常适合初学者。推荐给大家有时间看看

2010-09-03

spring 2.0 api 文档

这是一个spring 2.0 api文档,对于想查阅spring api者能提供很大的帮助,因为是chm非常方便。

2010-09-02

飞雪桌面日历注册破解版

这是一个飞雪桌面日历,找了很久才找到。强烈推荐给大家。

2010-01-21

SOA Using Java(TM) Web Services

这是一本电子工业出版社要诚征翻译作者的一部著作,对于想学soa 的朋友,吐血推荐。几经波折才得到的宝贵资料,现在把它献给大家。

2009-04-20

空空如也

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

TA关注的人

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