-
Oreilly.Java.Servlet.And.JSP,这是一本学习JSP的经典书籍,欢迎下载...
Oreilly.Java.Servlet.And.JSP,这是一本学习JSP的经典书籍,欢迎下载-Oreilly.Java.Servlet.And.JSP,this is a java study book,please download!very good!!!this is a java study book,this is a java study book,this is a java study book
- 2022-02-05 18:34:09下载
- 积分:1
-
酒店管理信息系统,SQL2000数据库,有编程爱好者请看!
酒店管理信息系统,SQL2000数据库,有编程爱好者请看!-Hotel Management Information System, SQL2000 database programming enthusiasts have see!
- 2022-07-27 14:52:34下载
- 积分:1
-
DMS-数据挖掘
数据挖掘-DMS 数据挖掘一般是指从大量的数据中自动搜索隐藏于其中的有着特殊关系性(属于Association rule learning)的信息的过程
- 2022-07-28 16:09:12下载
- 积分:1
-
Learning JAVA source code, everyone can be a good reference, please mention the...
JAVA学习源代码,大家可以好好参考,请多提宝贵意见-Learning JAVA source code, everyone can be a good reference, please mention the valuable advice
- 2022-01-24 17:38:18下载
- 积分:1
-
用JAVA模拟操作系统的文件管理,主要是用Fat表的形式来组织的文件系统的数据结构。...
用JAVA模拟操作系统的文件管理,主要是用Fat表的形式来组织的文件系统的数据结构。-JAVA simulation using the document management system, Fat is mainly used to organize the form of file system data structures.
- 2022-04-30 17:03:57下载
- 积分:1
-
Homework
说明: 输入出生月份、日期以及性别,显示对应星座及性格(Enter the month, date and gender of birth to show the corresponding constellation and personality)
- 2020-06-24 00:00:08下载
- 积分:1
-
code
国密算法java实现,包含SM2椭圆曲线公钥密码算法等(Implementation of Java algorithm)
- 2018-10-08 16:50:44下载
- 积分:1
-
android 短信拦截 实例完整源码下载
可实现拦截短信,自动转发的功能。 部分代码:import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.IBinder;import android.os.PowerManager;import android.os.PowerManager.WakeLock;public class MyService extends Service{ SMSReceiver rs=null; static MyService service; private static PendingIntent pi = null; public static AlarmManager am = null; @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); service=this; pm = (PowerManager) getSystemService(Context.POWER_SERVICE); registerAlarm(); acquireWakeLock(this); registerRecever(); } @Override public void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); releaseWakeLock(); unregisterAlarm(); } private void registerRecever(){ rs=new SMSReceiver(); IntentFilter filter=new IntentFilter(); filter.addAction("android.provider.Telephony.SMS_RECEIVED"); filter.setPriority(1000); registerReceiver(rs, filter); } @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub if(rs==null)registerRecever(); return START_STICKY; } public static WakeLock wakeLock = null; private static PowerManager pm = null; public static synchronized void acquireWakeLock(Context c) { if (null == wakeLock) { wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "smslock"); wakeLock.acquire(); } } public static synchronized void releaseWakeLock() { if (wakeLock == null) return; if (wakeLock.isHeld()) { wakeLock.release(); wakeLock = null; } } /** * 启动重复型定时器 */ public static void registerAlarm() { if(Config.getAlarm())return; Intent intent = new Intent(service, AlarmReceiver.class); pi = PendingIntent.getBroadcast(service, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); // 设置一个PendingIntent对象,发送广播 am = (AlarmManager) service.getSystemService(Context.ALARM_SERVICE); // 获取AlarmManager对象, Config.setAlarm(true); am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 30*60*1000, pi); } /** * 取消定时器 */ public static void unregisterAlarm() { am.cancel(pi); am = null; Config.setAlarm(false); }}
- 2014-05-21下载
- 积分:1
-
CLDC reference implementation including KvM
cldc参考实现 包括kvm-CLDC reference implementation including KvM
- 2022-03-19 16:10:22下载
- 积分:1
-
VoiceRecognitionLast---copiaIA
Realiza reconocimiento de voz de personas
- 2012-10-24 23:26:28下载
- 积分:1