登录
首页 » Java » Gover

Gover

于 2016-08-04 发布 文件大小:2644KB
0 184
下载积分: 1 下载次数: 2

代码说明:

  智睿政府网站管理系统具有强大的系统功能,拥有视频展示、文章/新闻、图片/风光、资源下载、政务要闻、网上办事、问答/留言、友情链接、广告系统、自定义模型、等众多丰富的功能模型。 个人站长完全免费,用户可在官网下载,免费使用,免费升级,而不需要支付任何费用,请勿建站它用,请仔细查看用户许可协议,企事业单位、政务机关必须使用商业版。(Zhi Rui government website management system has the powerful system function, with a video display, article/news, pictures/scenery, download resources, chief news, online work, question and answer/message, links, advertising system, custom model, and many other rich function model. Individual stationmaster is completely free, the user can in the official website download, free to use, free upgrades, and do not need to pay any fees, please do not site, please carefully check the user license agreement, enterprises, institutions, government organs must be using the commercial version.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 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
  • 捕鱼大亨,适合新手理解学习一步步养成的JAVA小游戏
    png为素材图,day05 Mian.c为最终程序
    2022-09-15 15:05:03下载
    积分:1
  • Demo1
    说明:  web基本功能以及例题,包括标题字体还有div,盒子模型等基础功能(Basic Web Functions and Examples)
    2019-07-10 10:00:23下载
    积分:1
  • 4399656.4730759522
    熟悉ASP、PHP、JSP网站的搭建。告诉你网站是如何被架构的,进而为后面分析脚本程序漏洞时,测试漏洞所用。(Familiar with ASP, PHP, JSP building site. Tell you how a site is being architecture, which for the following analysis script vulnerabilities, the test holes.)
    2013-10-14 14:23:10下载
    积分:1
  • 互联网编程
    这是被称为金马的 html 代码。这是我的老师的任务,需要对 stoorage 数据数据库喜欢老师、 学生等
    2023-02-05 05:00:03下载
    积分:1
  • shapjava面向对象设计
    这是一中基于java语言编写的shape框架类,采用了的面向对象的观念,对于软件的扩展和兴建非常有好的知道意义!
    2022-05-01 02:05:31下载
    积分:1
  • MouseRotateApp
    通过鼠标可以控制图象的宣战和显示通过鼠标可以控制图象的宣战和显示(macheng)
    2009-05-17 00:18:07下载
    积分:1
  • Login
    一套漂亮的登录模板,适合各种应用系统,采用Jquery开发(A nice login template for a variety of applications, developed using Jquery)
    2016-03-09 23:34:36下载
    积分:1
  • 入侵检测系统框架工作
    基于网络的入侵检测系统 (IDS) 的目标是识别的目标网络和其资源的恶意行为。入侵检测参数很多,在很多情况下他们目前不确定和不精确的因果关系,可以影响攻击类型。贝叶斯网络 (BN) 被称为图形建模工具用来包含不确定性的模型决策问题。在本文中,BN 用于构建基于签名识别的自动入侵检测系统。目标是,认识到已知的攻击签名、 匹配与那些已知的签名,观察到的行为和信号入侵时还有一场比赛。此系统的一个主要困难是入侵签名变化随着时间的推移和系统必须接受再培训。ID 必须能够适应这些变化。本文的目的是提供一种使用贝叶斯网络的自适应入侵检测系统的框架。
    2023-02-14 18:50:06下载
    积分:1
  • Cards-UI-master
    卡片式View,支持单个卡片,item为卡片的ListView 使用: CardListView list = ... list.setCardTheme(CardTheme.Dark) CardAdapter adapter = new CardAdapter(this, android.R.color.holo_blue_dark) list.setAdapter(adapter) // Alternatively, you can pass a context and string resources in place of strings // CardHeader has an optional second parameter for a subtitle CardHeader header = new CardHeader( I m a header ) // You can optionally set an action to the header // Specifying no action title will default to See More header.setAction( See More , new CardHeader.ActionListener() { @Override public void onHeaderActionClick(CardHeader header) { // Do whatever you want } }) // Add the header to the adapter, automatically notifies the list adapter.add(header) // Again, you can pass a context and string resources in place of strings Card card = new Card( Hello , My name is Aidan ) adapter.add(card) (This library is no longer maintained, as this implementation is generally frowned upon in the new Google Material design guidelines, excluding certain situations (like Google Keep type UI). See the new CardView APIs in the Support Library.)
    2015-01-24 15:06:35下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载