-
Android 创建HttpPost对象 获取HTTP连接
HttpGet httpGetRequest = new HttpGet(urlGet);//创建HttpPost对象
try {
HttpResponse httpResponse = new DefaultHttpClient().execute(httpGetRequest);
if(httpResponse.getStatusLine().getStatusCode()==200){//连接成功
String result = EntityUtils.toString(httpResponse.getEntity());//获得资源
result = result.replaceAll("
|
|
|
", "");//去掉信息中的回车和换行
EditText etGet = (EditText)findViewById(R.id.etGet);//获得EditText对象
etGet.setText(result);//为EditText设置内容
}
} catch (Exception e) {//捕获并打印异常
EditText etGet = (EditText)findViewById(R.id.etGet);//获得EditText对象
etGet.setText("连接出错:"+e.getMessage());//为EditText设置出错信息
}
- 2022-03-21 18:06:57下载
- 积分:1
-
下拉刷新demo
实现listview的下拉刷新
- 2013-05-15下载
- 积分:1
-
wifi_control_computer
一个基于安卓平台的用wifi控制电脑的源代码(An Android-based platform for the control of a computer source code wifi)
- 2013-09-07 20:08:04下载
- 积分:1
-
android使用socket原生开发聊天系统
android 使用socket 开发的聊天系统,原生代码建立数据库,存储聊天数据等
- 2023-01-08 07:35:23下载
- 积分:1
-
mp3
该软件实现MP3播放器的基本功能,实现播放,暂停,停止,上一曲,下一曲(The software to achieve the basic functions of MP3 player to achieve play, pause, stop, previous song, next song)
- 2013-05-23 12:03:42下载
- 积分:1
-
基于android平台的音频通信源码
主要是java部分,其中引用了一个so库。
- 2015-02-17下载
- 积分:1
-
图像识别
public static Bitmap doPretreatment(Bitmap img) {
setImgInfo(img);
Bitmap grayImg = getGrayImg();
int[] p = new int[2];
int maxGrayValue = 0, minGrayValue = 255;
// 计算最大及最小灰度值
getMinMaxGrayValue(p);
minGrayValue = p[0];
maxGrayValue = p[1];
// 计算迭代法阈值
int T1 = getIterationHresholdValue(minGrayValue, maxGrayValue);
// // 计算大津法阈值
// int T2 = getOtsuHresholdValue(minGrayValue, maxGrayValue);
// // 计算最大熵法阈值
// int T3 = getMaxEntropytHresholdValue(minGrayValue, maxGrayValue);
// int[] T = { T1, T2, T3 };
//
// Bitmap result = selectBinarization(T);
Bitmap result = binarization(T1);
return result;
}
- 2022-01-25 19:56:39下载
- 积分:1
-
Chat-Socket-Demo
一个android端与Java后台通过socket进行传输的代码。(A Java back end android transmitted through the socket code.)
- 2015-10-12 20:39:20下载
- 积分:1
-
Android手机虚拟GPS定位源码
利用hook实现GPS虚拟定位
- 2018-01-25下载
- 积分:1
-
logcount
android小程序,用来查找手机中的log文件,并统计log文件的数量,用于手机安全软件进行手机内log文件清理(android small program used to find the phone log files and statistics log file number of security software for mobile phone log file cleanup)
- 2013-11-06 14:44:50下载
- 积分:1