mSDStateBrocast = new SDStateBrocast();
IntentFilter intentFilter2 = new IntentFilter();
intentFilter2.addAction(Intent.ACTION_MEDIA_MOU...
分类:
其他好文 时间:
2014-04-30 02:29:49
阅读次数:
514
摘自:http://www.blogjava.net/liuguly/archive/2014/03/10/410824.html参考官网:1.http://livedocs.adobe.com/blazeds/1/blazeds_devguide/2.http://docs.spring.io/s...
分类:
编程语言 时间:
2014-04-30 02:28:48
阅读次数:
687
虽然网上有很多教程,但是我在这里进行简单对我用到的总结一下。加载Rewrite模块:在conf目录下httpd.conf中找到LoadModule
rewrite_module modules/mod_rewrite.so这句,去掉前边的注释符号“#”,或添加这句。.htacess文件,开头内容如下...
分类:
数据库 时间:
2014-04-30 02:25:42
阅读次数:
591
1.工具zxing2.1----下载地址:http://code.google.com/p/zxing/downloads/detail?name=ZXing-2.1.zip&can=2&q=
所有版本下载地址:http://code.google.com/p/zxing/download...
分类:
编程语言 时间:
2014-04-30 02:21:35
阅读次数:
601
Given preorder and inorder traversal of a tree,
construct the binary tree.Note:You may assume that duplicates do not exist in
the tree.思路:由前序遍历数组和中序遍历...
分类:
其他好文 时间:
2014-04-30 02:20:33
阅读次数:
366
16进制加法1 #include2 int main()3 {4 int a,b;5
while(scanf("%x %x",&a,&b)!=EOF)6 {7 printf("%d\n",a+b); 8 } 9 }
分类:
其他好文 时间:
2014-04-30 02:19:33
阅读次数:
357
先来回顾下通常把java对Excel的操作分为以下功能:1、生成模板,导出模板;2、填充模板,录入数据;3;读取数据库数据,导出数据;在上一篇博文中,我简单记录了模板生成和导出,在这篇博文中,主要来记录--Excel文件导入,数据录入(仍然是以jsp+servlet为例)
既然要解决这个问题,...
分类:
编程语言 时间:
2014-04-30 02:18:29
阅读次数:
795
function test(){ var myEntity=new Object();
myEntity.pro1="xxx"; myEntity.pro2=10; $.ajax({ type:
"post",//提交方式,post,get,put,delete 等 ...
分类:
Web程序 时间:
2014-04-30 02:17:27
阅读次数:
484
1、Microsoft.IdentityModel.dll
位置%ProgramFiles%\ReferenceAssemblies\Windows Identity
Foundation\v3.52、Microsoft.SharePoint.IdentityModel.dll位置C:\Window...
分类:
其他好文 时间:
2014-04-30 02:13:20
阅读次数:
460
线程安全的java日志记录器 1 import java.io.BufferedWriter;
2 import java.io.File; 3 import java.io.FileWriter; 4 import
java.io.IOException; 5 import java.t...
分类:
编程语言 时间:
2014-04-30 02:10:14
阅读次数:
560