-
运算放大器设计与应用.pdf
运算放大器设计与应用.pdf
- 2020-03-03下载
- 积分:1
-
签到程序App-Android练手
这是一个简单的应用程序,实现的功能就是:你填写一些必要信息,比方说姓名和学号,然后点击签到按钮,就把你的信息收录数据库;当然你可以替别人请假,所以设置了请假按钮;为了方便查看有那些人已经签到了或是请假了,你可以查看出勤表,也就是读取数据库信息。这就是一个简单签到应用。
- 2022-02-05 14:08:51下载
- 积分:1
-
Android执行远程安装APK功能
Android执行远程安装APK命令,远程安装APK,代码中已经定义了一个远程APK的路径,在Android环境下,执行安装命令,自动下载远程APK并执行安装。HttpResponse httpResponse = new DefaultHttpClient()
.execute(httpGet);
if (httpResponse.getStatusLine().getStatusCode() == 200)
{
InputStream is = httpResponse.getEntity().getContent();
FileOutputStream fos = new FileOutputStream(downloadPath
+ "/integration.apk");
byte[] buffer = new byte[8192];
int count = 0;
while ((count = is.read(buffer)) != -1)
{
fos.write(buffer, 0, count);
}
fos.close();
is.close();
installApk(downloadPath+ "/integration.apk");
}
- 2022-02-04 20:28:08下载
- 积分:1
-
Android-MMS
实现Android 彩信发送,实现Android 自定义彩信发送(To Android MMS sent to achieve Android custom MMS sent)
- 2013-04-12 15:45:29下载
- 积分:1
-
CoppyLoveMusic
网络乐库那块连接的是内网,所以没法展示,只是实现了整个播放器的一部分功能,没实现完全,不过基本功能都实现了(The piece is connected to the Network Library Intranet, so I can not show, is the realization of the function of the whole part of the player, not complete, but the basic functions are realized)
- 2017-08-30 15:51:24下载
- 积分:1
-
坦克大战
坦克大战
- 2016-06-11下载
- 积分:1
-
face++人脸识别demo
测试face人脸识别demo,参考安卓端的代码,可以实现图片上传以及检测。亲测可行。简单的图片识别,首先需要向库中添加人脸信息。即注册人脸。
- 2022-03-21 05:02:15下载
- 积分:1
-
emwin例子源码
【实例简介】
- 2021-08-20 00:31:52下载
- 积分:1
-
test_asynctask
这是自己编写的一套android关于异步下载处理的源码。(Asynchronous download android)
- 2011-05-10 21:11:21下载
- 积分:1
-
android 蓝牙 聊天 demo
android 蓝牙 聊天 demo 完整 源码 基于 androidstudio
- 2022-08-14 03:26:15下载
- 积分:1