最近的文章列表

Android实现文件夹和文件的排序功能 compare
static Comparator<File> comparator = new Comparator<File>() {
  public int compare(File f1, File f2) {
  if (f1 == null || f2 == null) {// 先比较null @camnpr
  if (f1 == null) {
2014/11/21 Comments:
Android程序raw文件放在sd卡代码实例代码
   void copyAssets()
  {
  String[] files;
  try
  {
  files = this.getResources().getAssets().list("");
  }
  catch (IOException e1)
2014/11/20 Comments:
Android客户端通过TelephonyManager获取手机号码代码实例
//创建电话管理
  TelephonyManager tm = (TelephonyManager)
  //与手机建立连接
  StartActivity.this.getSystemService(Context.TELEPHONY_SERVICE);
  //获取手机号码
2014/11/20 Comments:
Android开发中Bitmap源码实例参考

 安卓开发中Bitmap源码实例

  package android.graphics;
  import java.awt.image.BufferedImage;
  import java.io.File;
  import java.io.IOException;
2014/11/19 Comments:
Android开发游戏音效代码实例参考

代码示例如下:

//音效的音量
  int streamVolume;
  //定义SoundPool 对象 private SoundPool soundPool;
  //定义HASH表 private HashMap<Integer, Integer> soundPoolMap;
  /***************************@camnpr************************************ * Function: initSounds();
2014/11/18 Comments:
2014十大洗脑神曲 - 屌爆天了 - 听音乐有益身心健康的10大方面

  2014年十大吊炸天洗脑神曲新鲜出炉,你都听过哪些?

2014/11/17 Comments:
PHP实现函数重载的示例代码 func_get_args、func_num_args

1.可以使用func_get_args()和func_num_args()这两个函数实现函数的重载!!

PHP代码:

代码如下:
function rewrite() {   
2014/11/14 Comments:
php通过HTML2RTF.Converter实现html转为rtf格式 报错:Fatal error: Class 'COM' not found in xxx

前期准备工作 下载Html2Rtf.dll,以管理员的身份运行cmd,进入Html2Rtf.dll所在目录--》输入Regsvr32 Html2Rtf.dll

核心代码:

代码如下:
<?php
$html2RTFCom = new COM("HTML2RTF.Converter");// @郑州网建
$html2RTFCom--->PreserveImages = true;
2014/11/13 Comments:
CSS3动起来 - 旋转90、180、270度 - 垂直、水平翻转

直接上代码,类名字就能说明意思:

.camnpr-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

效果如下:

2014/11/12 Comments:
php结合js实现异步图片上传实例代码

upload.php

代码如下:
<?php
if(isset($_FILES["myfile"]))
{
$ret = array();
$uploadDir = 'images'.DIRECTORY_SEPARATOR.date("Ymd").DIRECTORY_SEPARATOR;
2014/11/12 Comments: