① android网络操作的几种方法
第一种方式:使用HttpURLConnection进行联网操作
这个方法需要我们手动构建一个http请求包,发送到指定的服务器
get方式
设置URL
打开连接
设置请求方法为get
设置连接超时时间
设置读取超时时间
把当前的request发送到服务器端
等待服务器的响应(此处会阻塞)
获得响应码(并在响应码中做相应的操作),因为安卓子线程内不允许做UI更新的操作,所以需要转到主线程来做(通过安卓中的handler来将信息传递到主线程)
java">publicvoidgetPic(Viewv){
newThread(newRunnable(){
@Override
publicvoidrun(){
try{
//首先要支出服务器的地址
URLurl=newURL("http://192.168.2.1/day10_NetworkServer/brushli.jpg");
//通过http连接
=(HttpURLConnection)url.openConnection();
//设置请求方式,并设置等待响应时间
httpurlConnection.setRequestMethod("GET");
httpurlConnection.setConnectTimeout(5000);
//把当前的request发送到服务器(安卓不允许在主线程内做耗时操作,如连接服务器)
httpurlConnection.connect();
//发送完连接后等待操作,这个是阻塞式方法,
intresponseCode=httpurlConnection.getResponseCode();
//根据得到的响应代码和response的信息作出相应的操作
if(responseCode==200){
//从服务器读取正确与否的信息
InputStreamis=httpurlConnection.getInputStream();
Filefile=newFile("/data/data/com.rgd.day10_network_3/files");
file.mkdir();
FileOutputStreamfos=newFileOutputStream(newFile("/data/data/com.rgd.day10_network_3/files/brushli.jpg"));
byte[]buffer=newbyte[1024];
intread;
while((read=is.read(buffer))!=-1){
fos.write(buffer,0,read);
}
//由于子线程不允许做UI更新操作,与要通过Handler进行和主线程的通信操作
Messagemsg=newMessage();
msg.what=1;
handler.sendMessage(msg);
fos.close();
is.close();
}
}catch(MalformedURLExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}
}
}).start();
}
Handlerhandler=newHandler(){
@Override
publicvoidhandleMessage(Messagemsg){
super.handleMessage(msg);
switch(msg.what){
case1:
Toast.makeText(MainActivity.this,"保存图片成功",Toast.LENGTH_LONG).show();
break;
case2:
Toast.makeText(MainActivity.this,"保存MP3成功",Toast.LENGTH_LONG).show();
break;
case3:
Toast.makeText(MainActivity.this,"保存视频成功",Toast.LENGTH_SHORT).show();
default:
break;
}
}
};
2.post方式
操作跟get差不多,除了post传递信息是通过正文传递的,而get是放在连接中的
newThread(newRunnable(){
@Override
publicvoidrun(){
try{
//首先要支出服务器的地址
URLurl=newURL("http://192.168.106.1/day10_NetworkServer/servlet/loginInfo");
//通过http连接
=(HttpURLConnection)url.openConnection();
//设置请求方式,并设置等待响应时间
httpurlConnection.setRequestMethod("POST");
httpurlConnection.setConnectTimeout(5000);
Stringdata="username="+username+"&password="+password+"&email="+email+"&phonenumber="+phonenumber;
OutputStreamoutputStream=httpurlConnection.getOutputStream();
outputStream.write(data.getBytes());
//把当前的request发送到服务器(安卓不允许在主线程内做耗时操作,如连接服务器)
httpurlConnection.connect();
//发送完连接后等待操作,这个是阻塞式方法,
intresponseCode=httpurlConnection.getResponseCode();
//根据得到的响应代码和response的信息作出相应的操作
if(responseCode==200){
//从服务器读取正确与否的信息
InputStreamis=httpurlConnection.getInputStream();
byte[]buffer=newbyte[1024];
intread=is.read(buffer);
Stringresult=newString(buffer,0,read);
//由于子线程不允许做UI更新操作,与要通过Handler进行和主线程的通信操作
Messagemsg=newMessage();
msg.what=1;
handler.sendMessage(msg);
}else{
Messagemsg=newMessage();
msg.what=-1;
handler.sendMessage(msg);
}
}catch(MalformedURLExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}
}
}).start();
② android手机怎么才能直接打开URL链接文件
在安卓代码中调用浏览器来打开相应的网页,通常可以通过Intent的方式实现。首先,你需要确保你的AndroidManifest.xml文件中已经添加了互联网访问权限。这一步骤至关重要,因为没有网络权限,程序将无法正常执行。
接下来,你需要在你的Activity中创建一个Intent对象,并设置其action属性为Intent.ACTION_VIEW。然后,通过setData()方法设置Intent对象的Uri参数,这个参数应该是一个指向你要打开的网页的URL。
在设置完Intent对象后,你可以通过startActivity()方法启动浏览器来显示该网页。例如,你可以这样写代码:Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com")); startActivity(intent)。
需要注意的是,有时候直接使用上述方法可能无法成功打开网页,特别是在使用自定义Scheme的情况下。这时,你可以尝试使用WebView来加载网页。首先,在你的Activity布局文件中添加一个WebView组件,然后在Activity的代码中初始化WebView并设置其设置,最后使用loadUrl()方法加载URL。
另外,你还可以考虑使用第三方库来简化这个过程,比如Universal-Web-Viewer。使用这种方法,你可以直接通过简单的API调用打开网页,而不需要自己处理WebView的配置。
为了确保程序能够正确运行,你还需要在AndroidManifest.xml文件中声明WebView需要的权限,例如ACCESS_NETWORK_STATE和INTERNET。同时,确保你的应用具有适当的权限,以便能够访问互联网。
通过上述步骤,你就可以在安卓设备上实现直接打开URL链接文件的功能了。这不仅方便了用户,也提升了应用的功能性和用户体验。
在实际开发中,你还需要考虑到网络状态和权限问题,确保在无网络或缺乏相应权限的情况下给出合适的提示或处理。
总之,通过使用Intent或WebView,你可以轻松地在安卓应用中打开网页,为用户提供更加便捷的服务。
③ android get/post如何实现多参数请求
可使用android自带的httpclient框架实现。
GET 方式传递参数
//先将参数放入List,再对参数进行URL编码
List<BasicNameValuePair> params = new LinkedList<BasicNameValuePair>();
params.add(new BasicNameValuePair("param1", "数据")); //增加参数1
params.add(new BasicNameValuePair("param2", "value2"));//增加参数2
String param = URLEncodedUtils.format(params, "UTF-8");//对参数编码
String baseUrl = "服务器接口完整URL";
HttpGet getMethod = new HttpGet(baseUrl + "?" + param);//将URL与参数拼接
HttpClient httpClient = new DefaultHttpClient();
try {
HttpResponse response = httpClient.execute(getMethod); //发起GET请求
Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); //获取响应码
Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8"));//获取服务器响应内容
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
2.POST方式 方式传递参数
//和GET方式一样,先将参数放入List
params = new LinkedList<BasicNameValuePair>();
params.add(new BasicNameValuePair("param1", "Post方法"));//增加参数1
params.add(new BasicNameValuePair("param2", "第二个参数"));//增加参数2
try {
HttpPost postMethod = new HttpPost(baseUrl);//创建一个post请求
postMethod.setEntity(new UrlEncodedFormEntity(params, "utf-8")); //将参数填入POST Entity中
HttpResponse response = httpClient.execute(postMethod); //执行POST方法
Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); //获取响应码
Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8")); //获取响应内容
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}