登录
首页 » Java » Wlt2BmpDemo

Wlt2BmpDemo

于 2017-07-10 发布 文件大小:2072KB
0 210
下载积分: 1 下载次数: 60

代码说明:

  android jni 将wlt图片转成bmp格式图片,支持32位armeabi架构手机(wlt convert to bitmap file ,only for armeabi)

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

发表评论

0 个回复

  • MethodInfo
    MethodInfo implements AbstractMethodInfo Source Code for Andriod.
    2013-12-06 12:22:35下载
    积分:1
  • java 语言实现excel表格的合并
    此程序可以在很短的时间内完成对大型excel表格的合并,没有错误,准确率高,效率高,在人们可以接受的范围内,此代码在本人仔细演算过,没有问题
    2022-02-04 16:29:28下载
    积分:1
  • Java 麦克风示例
    演示如何访问在 Java 中的麦克风。类实现作为可运行,以便于以运行它:1.您可以在执行线程并调用 start或2.你可以直接叫 AudioRead.run(),会阻止,直到停止国旗。
    2022-11-24 14:55:03下载
    积分:1
  • chatSample
    using android in java eclipse.
    2012-06-24 00:45:20下载
    积分:1
  • 千里之行
    应用背景应用Java web以及sqlserver做的一个购物平台,可以进行加入购物车,以及支付。后台有对订单以及商品的一些管理,,对用户进行的管理,。。。关键技术应用Java web以及sqlserver做的一个购物平台,有点类似于淘宝,不过淘宝只有前台,这个还有对应的后台处理,相当于淘宝中的卖家可以对本店的商品进行管理。
    2022-04-10 14:38:03下载
    积分:1
  • android.setting
    Android4.4 的Setting.apk源码,可以查看学习一下,但是,有个问题,导入到Eclipse的时候有错误,因为需要调用系统下的包,而系统下的包都是以一种@hide隐藏着,只允许系统下的类调用,所以,这个外项目是无法调用到的。
    2022-03-14 11:20:04下载
    积分:1
  • gcc编译gd32f103
    【实例简介】gcc编译gd32f103
    2021-08-01 00:31:00下载
    积分:1
  • android 操作 wifi 教程以及项目源码下载
    在Android中对Wifi操作,android本身提供了一些有用的包,在android.net.wifi包下面。简单介绍一下:大致可以分为四个主要的类ScanResult,wifiConfiguration,WifiInfo,WifiManager(1)ScanResult,主要是通过wifi 硬件的扫描来获取一些周边的wifi 热点的信息。(2)wifiConfiguration 在我们连通一个wifi 接入点的时候,需要获取到的一些信息。大家可以跟我们有线的设备进行对比一下。(3)WifiInfo 在我们的wifi 已经连通了以后,可以通过这个类获得一些已经连通的wifi 连接的信息获取当前链接的信息,这里信息就比较简单了,这里简单介绍一下这里的方法:       getBSSID() 获取BSSID       getDetailedStateOf() 获取客户端的连通性       getHiddenSSID() 获得SSID 是否被隐藏       getIpAddress() 获取IP 地址       getLinkSpeed() 获得连接的速度       getMacAddress() 获得Mac 地址       getRssi() 获得802.11n 网络的信号       getSSID() 获得SSID       getSupplicanState() 返回具体客户端状态的信息(4)wifiManager 这个不用说,就是用来管理我们的wifi 连接,这里已经定义好了一些类,可以供我们使用。这里来说相对复杂,里面的内容比较多,但是通过字面意思,我们还是可以获得很多相关的信息。这个类里面预先定义了许多常量,我们可以直接使用,不用再次创建。介绍完了,开始写一个Demo吧。程序已启动效果图如下:看代码,其中有注释,我就不多说了。布局文件代码:= mWifiConfiguration.size()) {                        return;                }                // 连接配置好的指定ID的网络                mWifiManager.enableNetwork(mWifiConfiguration.get(index).networkId,                                true);        }        // 得到MAC地址        public String getMacAddress() {                return (mWifiInfo == null) ? "NULL" : mWifiInfo.getMacAddress();        }        // 得到接入点的BSSID        public String getBSSID() {                return (mWifiInfo == null) ? "NULL" : mWifiInfo.getBSSID();        }        // 得到WifiInfo的所有信息包        public String getWifiInfo() {                return (mWifiInfo == null) ? "NULL" : mWifiInfo.toString();        }        // 添加一个网络并连接        public int addNetwork(WifiConfiguration wcg) {                int wcgID = mWifiManager.addNetwork(mWifiConfiguration.get(3));                mWifiManager.enableNetwork(wcgID, true);                return wcgID;        }}复制代码AndroidManifest.xml:(注意需要添加的权限)                                                                                                                                                                                                                复制代码布局文件就不贴了,我想看界面你都可以自己写出来,如果有需要,这里可以下载源代码:
    2013-09-10下载
    积分:1
  • ISSAuthorize
    Android与IIS身份验证案例源码,在Android移动项目开发中,访问服务器时,为了简洁方便,我们经常使用http协议来传递JSON格式的数据。然而有些项目需要有一定的安全性,如使用Android客户端登陆到MIS系统。虽然我们是通过Android手机客户端的登陆Activity中登陆到系统的,但是略懂电脑的黑客是能够跳过登陆Activity,从而直接进入系统的。这样,会造成一些由于系统的不安全所带来的麻烦。建立一种防止黑客强行登录的身份验证模式尤为重要。此时,系统的身份验证成为阻挡黑客登陆的一道屏障。那么,怎样实现一个身份验证呢?让我们以IIS为宿主,一步一步的实现身份验证吧(Android and IIS authentication case source code, in the Android mobile project development, access to the server, in order to be simple and convenient, we often use the HTTP protocol to transfer JSON format data. However, some of the project needs to have a certain security, such as the use of Android client login to the MIS system. Although we are through the Android mobile client landing Activity landing to the system, but slightly understand the computer hacker is able to skip the landing Activity, thus directly into the system. In this way, it will cause some of the problems caused by the system is not safe. It is particularly important to establish an identity authentication mode to prevent hackers logging in. At this point, the identity of the system has become a barrier to prevent hackers landing. So, how to achieve an identity verification? Let us take IIS as the host, step by step to achieve authentication bar)
    2016-06-20 11:04:56下载
    积分:1
  • Memory
    Memory extends Preference Activity implements On Cancel Listener.
    2014-02-17 14:35:39下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载