自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Shawn

Keep Walking!

  • 博客(7)
  • 资源 (4)
  • 收藏
  • 关注

原创 万能 dao 增删改查一个方法搞定

package heima.shawn.utils; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.sql.Connection; import java.sq

2011-08-30 05:13:57 2184 3

原创 Android 中的 OpenGL 简单入门 (下)

Android 中的 OpenGL 简单入门 (下)     上篇博客中已经介绍了如何使用openGL为android提供的api绘制出简单的三角形和四边形,,,,上篇博客地址http://blog.csdn.net/a15874647/article/details/67

2011-08-25 19:47:48 2255 1

原创 Android 中的 OpenGL 简单入门(上)

OpenGL(open graphics library)               Open GL 于 Open GL ES 之间的关系,,OpenGL ES 是专为内嵌和移动设备设计的一个2D/3D的一个轻量级图形库,,它是基于OpenGL API设计的,,,是Open

2011-08-24 02:55:52 2522 2

转载 使用Memory Analyzer Tool(MAT)Eclipse插件分析内存泄露

前言 在使用Memory Analyzer tool(MAT)分析内存泄漏(一)中,我介绍了内存泄漏的前因后果。在本文中,将介绍MAT如何根据heap dump分析泄漏根源。由于测试范例可能过于简单,很容易找出问题,但我期待借此举一反三。 一开始不得不说说ClassLoa

2011-08-23 05:45:45 7180 1

原创 深入理解 Android 的 IPC 机制--------Binder

在android中,,应用程序虽然是以独立的进程来运行的,但相互之间还是需要通信。。比如,,我们的应用程序 和后台服务往往会运行不同的进程当中,,各自有这独立内存地址空间,,,但是又要彼此互相合作,,,需要进行通信和数据共享,,在linux下,进程通信的方式有  socket,,

2011-08-20 05:28:46 2173

原创 Android系统架构----&----Android初始化流程

Android 系统架构 分为五层 1,应用程序层 如桌面 home,E-mail客户端,SMS/MMS短消息,日历,地图,浏览器,联系人程序等··· 当然还包括我们自己用写的程序,,,或是使用java中的JNI技术配合android-NDK开发的应用程序 2,应

2011-08-17 19:04:52 2466

原创 javaweb & android 对比理解图 系列 图一

2011-08-07 01:13:40 1089 1

Charles 最新版 3.11.2 破解补丁

如题 Charles 最新版 3.11.2 破解补丁

2015-12-28

Schema的Xpath教程

支持各种语言 ZVON.org - XPath Tutorial Please, start with: General/examples.html (English) General_cze/examples.html (česky) General_dut/examples.html (Nederlands) General_fre/examples.html (Français) General_spa/examples.html (Español) General_rus/examples.html (По-русски) General_ger/examples.html (Deutsch) General_chi/examples.html (中文)

2011-06-06

java反编译工具FrontEnd和jad

java反编译工具 Jad accepts the following options: -a - annotate the output with JVM bytecodes (default: off) -af - same as -a, but output fully qualified names when annotating -clear - clear all prefixes, including the default ones (can be abbreviated as -cl) -b - output redundant braces (e.g., if(a) { b(); }, default: off) -d <dir> - directory for output files (will be created when necessary) -dead - try to decompile dead parts of code (if any) (default: off) -disass - disassemble method bytecodes (no JAVA source generated) -f - output fully qualified names for classes/fields/methods (default: off) -ff - output class fields before methods (default: after methods) -i - output default initializers for all non-final fields -l<num> - split strings into pieces of maximum <num> chars (default: off) -lnc - annotate the output with line numbers (default: off) -lradix<num> - display long integers using the specified radix (8, 10 or 16) -nl - split strings on newline character (default: off) -nocast - don't generate auxiliary casts -nocode - don't generate the source code for methods -noconv - don't convert Java identifiers (default: convert) -noctor - suppress the empty constructors -nodos - do not check for class files written in DOS mode (CR before NL, default: check) -nofd - don't disambiguate fields with the same names by adding signatures to their names (default: do) -noinner - turn off the support of inner classes (default: on) -nolvt - ignore Local Variable Table information -nonlb - don't output a newline before opening brace (default: do) -o - overwrite output files without confirmation (default: off) -p - send decompiled code to STDOUT (e.g., for piping) -pi<num> - pack imports into one line after <num> imports (default: 3) -pv<num> - pack fields with identical types into one line (default: off) -pa <pfx>- prefix for all packages in generated source files -pc <pfx>- prefix for classes with numerical names (default: _cls) -pf <pfx>- prefix for fields with numerical names (default: _fld) -pe <pfx>- prefix for unused exception names (default: _ex) -pl <pfx>- prefix for locals with numerical names (default: _lcl) -pm <pfx>- prefix for methods with numerical names (default: _mth) -pp <pfx>- prefix for method parms with numerical names (default: _prm) -r - restore package directory structrure -radix<num> - display integers using the specified radix (8, 10 or 16) -s <ext> - output file extension (by default '.jad') -safe - generate additional casts to disambiguate methods/fields (default: off) -space - output space between keyword (if/for/while/etc) and expression (default: off) -stat - display the total number of processed classes/methods/fields -t - use tabs instead of spaces for indentation -t<num> - use <num> spaces for indentation (default: 4) -v - display method names being decompiled -8 - convert UNICODE strings into 8-bit strings using the current ANSI code page (Win32 only) -& - redirect STDERR to STDOUT (Win32 only)

2011-06-06

C#中实现图片文件拖拽的教程以及关键代码!

C#中实现图片文件拖拽的教程以及关键代码!

2010-11-23

空空如也

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

TA关注的人

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