android中TextAppearanceSpan的使用Posted on April 17,
2011在android中如何想word中一样对文字进行丰富的风格设置呢?TextAppearanceSpan
能帮助你实现这个目标。下面是一个实例://设置“Hello”的格式SpannableStr...
分类:
移动开发 时间:
2014-06-07 02:16:19
阅读次数:
240
开放服务网关倡议(OSGi)定义了开发和部署模块应用程序和库的体系结构。作为介绍OSGi的第一篇文章,本文旨在让你了解OSGi开发的一些概念,并向你展示了如何使用Eclipse的OSGi容器(Equinox)实现建立一个简单的Hello World应用。此外还简要介绍了使用OSGi构建面向服务的应用程序以及OSGi的servicefactory和servicetracker类。
OSGI(Open Services Gateway Initiative),也叫JAVA动态模块系统,定义了一套模块应用开发的...
分类:
其他好文 时间:
2014-06-05 12:33:11
阅读次数:
379
【开胃小菜】
当提到python中strip方法,想必凡接触过python的同行都知道它主要用来切除空格。有以下两种方法来实现。
方法一:用内置函数
#
if __name__ == '__main__':
str = ' Hello world '
print '[%s]' %str.strip()
#
方法二:调用string模块中方法
#
import s...
分类:
编程语言 时间:
2014-06-05 09:27:48
阅读次数:
330
----------------------------------------------------hello world-------------------------------------------
linux 创建如下文件 vim hello
#! /bin/bash //告诉Shell 使用哪个Shell 程序
#Display a line //#表示...
分类:
其他好文 时间:
2014-06-05 02:41:41
阅读次数:
393
简单的部署应用。第一种方法是直接写JSP代码,然后放到指定的WAR文件夹中。第二种,是同时META-INF下的application.xml文件,然后用JAR
-CF编成WAR,再集合JSP形成EAR文件,将这个EAR文件直接放到DEPLOY中即可。Hello,JSPweb-app.war/hell...
分类:
其他好文 时间:
2014-06-03 12:18:31
阅读次数:
321
接着上一篇文章通过Mybatis完成了一个User的CRUD的功能之后,这篇开始还需要建立一个Blog类,这样就可以模拟一个简单的微博平台的数据库了。数据库准备首先我们,还是需要在数据库中新建一个表blog
1 CREATE TABLE `blog`.`blog` ( 2 `b_id` INT .....
分类:
其他好文 时间:
2014-05-31 14:01:03
阅读次数:
215
perl重点基础知识整理#若无特殊说明,以下都是基于ubuntu
13.04版本1:终端下运行perl脚本:step1:在桌面新建一个perl脚本,输入:#! /usr/bin/perlprint "hello
world!";step2:打开终端:hqh@ubuntu:~$ cd ~/...
分类:
其他好文 时间:
2014-05-31 04:29:18
阅读次数:
331
1、需要准备的工具,eclipse,cdt(c++)插件,cygwin(unix)和
android ndk.2、开发步骤:a.创建一个android工程b.JAVA代码中写声明 native 方法 public native String
helloFromJNI(); 通过javah 包名.类....
分类:
移动开发 时间:
2014-05-31 01:09:30
阅读次数:
337
不能免俗,先打印个helloworld出来,c代码的函数hello.c#include int
helloworld(){ printf("hello world!"); return 0;}然后编译成动态链接库 gcc hello.c -fPIC
-shared -o libhello...
分类:
编程语言 时间:
2014-05-30 02:08:52
阅读次数:
467
QString stores a string of 16-bit QChars, where
each QChar corresponds one Unicode 4.0 character.一、初始化QString字符串 1)Char *
初始化QString str = "Hello"...
分类:
其他好文 时间:
2014-05-30 00:47:43
阅读次数:
376