最新文章列表

Android笔记(三):AndroidManifest.xml文件介绍

AndroidManifest.xml是每个android程序中必须的文件。它位于application的根目录,描述了package中的全局数据,包括了package中暴露的组件(activities, services, 等等),它们各自的实现类,各种能被处理的数据和启动位置。 此文件一个重要的地方就是它所包含的intent-filters。这些filters描述了activity启动的位置和 ...
Irving_wei 评论(0) 有1301人浏览 2011-06-11 10:02

url小知识

URL(统一资源定位器) 一个称为 URL(统一资源定位器)的东西用于对万维网上的文档(或其他数据)进行寻址。一个完整的网址,例如:http://www.W3CSchool.cn/html/lastpage.html,遵守如下语法规则: scheme://host.domain:port/path/filename Scheme 定义因特网服务的类型。最流行的类型是 http。 domain(域 ...
chinagdvea 评论(0) 有763人浏览 2011-06-11 01:10

Using LDAP for Apache Authentication

This method authenticates using Apache 2.0/2.2 and the LDAP authentication modules on Linux (supplied by default with most Linux distros) and an LDAP server. LDAP can be used to authenticate use ...
li.feixiang 评论(0) 有1976人浏览 2011-06-09 00:21

01-A. What Is a Decision? 01-B. Secrets of Success at an Interview

01-A. What Is a Decision? A decision is a choice made from among alternative courses of action that are available. The purpose of making a decision is to establish and achieve organizational goals and ...
ago520 评论(0) 有838人浏览 2011-06-08 23:37

Removing vaulted items from Windchill database

This past weekend I spent about 25 plus hours rehosting a production Windchill server to an identical development Windchill server. One of the last steps in cleaning up the rehost procedure is r ...
li.feixiang 评论(0) 有1296人浏览 2011-06-08 20:04

Tomcat SSL

Tomcat 配置SSL cd到JDK bin目录下输入: keytool -genkey -alias tomcat -keyalg RSA -keypass neplink -storepass neplink -keystore C:\tomcat.keystore -validity 3000 生成key C:\tomcat.keystore,其间按步骤输入密码或者信息,记住密码。 ...
ponlya 评论(0) 有960人浏览 2011-06-08 09:53

收集几个开源小东西

---------------------------- Fastjson is a JSON processor (JSON parser + JSON generator) written in Java: FAST (measured to be faster than any other Java parser and databinder, incudes jackson. ) Po ...
dfwang 评论(0) 有823人浏览 2011-06-07 12:56

织梦HTTP IMAGE下载类

<?php if(!defined('DEDEINC')) exit("Request Error!"); /** * 织梦HTTP下载类 * * @version $Id: dedehttpdown.class.php 1 11:42 2010年7月6日Z tianya $ * @package DedeCMS.Libra ...
mengdejun 评论(0) 有1879人浏览 2011-06-05 14:57

WEB系统优化【一】减少HTTP请求数量 (Minimize HTTP Requests)

   80%的用户响应时间被花费在前端,而这其中的绝大多数时间是用于下载页面中的图片、样式表、脚本以及Flash这些组件。减少这些组件的数量就可以 ...
爪哇岛岛主 评论(0) 有2036人浏览 2011-06-05 14:03

How v$recovery_file_dest.space_used is calculated from v$asm_file.bytes in ASM

Oracle Server - Enterprise Edition - Version: 11.1.0.7 and later[Release: 11.1 and later ] The purpose of this note is to provide insight on how space allocation ( v$asm_file.space column ) in AS ...
helloyesyes 评论(0) 有819人浏览 2011-04-21 16:38

Binder Frequently Asked Questions

= Binder Frequently Asked Questions = '''Note: this material comes from internal documentation at PalmSource, and still contains references to things that are not a part of OpenBinder.''' [[TOC(B ...
isiqi 评论(0) 有1047人浏览 2011-03-30 19:11

MTD系列 - pxa3xx_nand_probe()函数解析

/* nand 设备先于nand 驱动注册,所以,在nand driver注册的时候会按照名字去匹配 paltform bus上注册的所有设备,(一个driver可以管理多个devices,但一个device ...
womendu 评论(0) 有2004人浏览 2010-11-13 23:05

IBM详解 Android 的 Activity 组件

转自:http://www.ibm.com/developerworks/cn/opensource/os-cn-android-actvt/index.html Activity 的生命周期 和 J2ME 的 MIDlet 一样,在 android 中,Activity 的生命周期交给系统 ...
isiqi 评论(0) 有804人浏览 2010-11-13 11:46

(转)android的Intent

在一个Android应用中,主要是由四种组件组成的,这四种组件可参考“Android应用的构成”。 而这四种组件是独立的,它们之间可以互相调用,协调工作,最终组成一个真正的Android应用。在这些组件之间的通讯中,主要是由Intent协助完成的。Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Intent的描述,负责找到对应的组件,将 Intent传递 ...
isiqi 评论(0) 有712人浏览 2010-06-02 15:12

WinCE系统声音定制

作者:ARM-WinCE 2010的第一篇Blog,介绍一下WinCE系统声音的定制。说白了,就是设置注册表。WinCE系统启动的开机音乐,点击触摸屏以及键盘输入的按键音,还有系统运行过程中的各种声音其实都是在注册表里面预先设置好的。这里做个简单介绍: 整个WinCE系统声音注册表设置如下: [HKEY_CURRENT_USER\ControlPanel\Volume] &q ...
javahigh1 评论(0) 有773人浏览 2010-01-16 17:36

在 TOMCAT 下配置 SSL

在 TOMCAT 下配置 SSL 1、生成keystoreD:\tools\j2sdk1.4.2_10\bin\keytool -genkey -alias tomcat -keyalg RSA -keysize 1024 -validity 365 -keystore tomcat.keystore 2、配置 server.xml <Connector port="1044 ...
isiqi 评论(0) 有882人浏览 2007-08-29 14:46

老外写的正则表达式的类

又是在www.asp.net上找到的.因为其很简单并且作者也是直接了当把代码拿上来了,所以就不翻译了代码如下 usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Text.RegularExpressions;namespaceCoreWebLibrary.Text.RegularExpressions
isiqi 评论(0) 有899人浏览 2007-08-01 15:58

HTTP Response Headers

HTTP Response Headers Constants ACCEPT (24)Acceptable media types. ACCEPT-CHARSET (25)Acceptable character sets. ACCEPT-ENCODING (26)Acceptable content-coding values. ACCEPT-LANGUAGE (27)Acceptable ...
isiqi 评论(0) 有1094人浏览 2007-07-12 16:12

Efficient in-memory extensible inverted file

Abstract The growing amount of on-line data demands efficient parallel and distributed indexing mechanisms to manage large resource requirements and unpredictable system failures. Parallel and distr ...
isiqi 评论(0) 有856人浏览 2007-07-10 10:20

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) .net(54785) 编程(39454) JSP(37542) 数据结构(36423) Eclipse(31254) PHP(29988) F#(26079) 算法(24867) 脚本(19840) J#(18922) JDBC(17888) ASP(17480) JDK(14881) JVM(14450)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics