(不需中華電信Hisecure API)跨平台支援Windows以及Linux雙系統-專題製作最好工具 自行開發之自然人憑證SDK, 使用此SDK可以開發利用自然人憑證進行資料加密,解密,電子文件簽章,驗證的功能 跨平台支援Windows, Linux雙作業系統, 目前僅提供 C,C++語言函式SDK,若需別種語言可專案處理 此SDK為自行開發, 完全不使用中華電信Hisecure API函式以及SafeSign CSP,故不需向內政部申請使用 使用此SDK可達成 內政部提供 - 自然人憑證API基本應用程式網頁 內所有的功能 並完全相容於上述自然人憑證API基本應用程式, 亦即此SDK產生之簽章可在上述網址中驗證成功,反之亦然
2010年5月27日 星期四
android 隨筆
2010年5月5日 星期三
android 查詢執行中之service
ActivityManager am =
(ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
List
am.getRunningServices(1000);
then just loop through that list to see if your service is running i.e
count = runningServices.size();
Component cnMyService = new ComponentName(this, myService.class);
(for int i=0; i < count ; i++) {
if( runningServices.get(i).service.equals(cnMyService) ) {
// Your service is running, do something
}
data from:http://groups.google.com.tw/group/android-developers/browse_thread/thread/9d3a18d966a320cd