HTTP是大多数应用程序中常用的与服务端交互的通讯方式。 较简单的一种HTTP通讯API:HttpGet和HttpPost。实际上,还有另外一套HTTP通讯API:HttpURLConnection。这套API也可以使用在基于Java的桌面或Web应用程序中。因此,如果想设计一套通用的基于HTTP的API,建议使用HttpURLConnection。通过HTTP可以传递任何形式的数据。这要比通过基于XML的WebService更灵活,传递的数据类型更广泛。例如,可以直接通过HTTP传递二进制数据,而无需对其进行编码。
HttpURLConnection类
java.net.HttpURLConnection类是另外一种访问HTTP资源的方式。HttpURLConnection类具有完全的访问能力,可以取代HttpGet和HttpPost类。使用HttpUrlConnection访问HTTP资源可以使用如下几步
1.使用java.net.URL封装HTTP资源的url,并使用openConnection方法获得HttpUrlConnection对象,代码如下:
URL url = new URL("http://www.blogjava.net/nokiaguy/archive/2009/12/14/305890.html"); HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
2.设置请求方法,例如,GET、POST等,代码如下:
httpURLConnection.setRequestMethod("POST");
要注意的是,setRequestMethod方法的参数值必须大写,例如,GET、POST等
3.设置输入输出及其他权限。如果要下载HTTP资源或向服务端上传数据,需要使用如下的代码进行设置
// 下载HTTP资源,需要将setDoInput方法的参数值设为true httpURLConnection.setDoInput(true); // 上传数据,需要将setDoOutput方法的参数值设为true httpURLConnection.setDoOutput(true);
4.HttpURLConnection类还包含了更多的选项,例如,使用下面的代码可以禁止HttpURLConnection使用缓存
httpURLConnection.setUseCaches(false);
5.设置HTTP请求头。在很多情况下,要根据实际情况设置一些HTTP请求头,例如,下面的代码设置了Charset请求头的值为UTF-8。
httpURLConnection.setRequestProperty("Charset", "UTF-8");
6.输入和输出数据。这一步是对HTTP资源的读写操作。也就是通过InputStream和OutputStream读取和写入数据。下面的代码获得了InputStream对象和OutputStream对象
InputStream is = httpURLConnection.getInputStream(); OutputStream os = httpURLConnection.getOutputStream();
至于是先读取还是先写入数据,需要根据具体情况而定
7.关闭输入输出流。虽然关闭输入输出流并不是必须的,在应用程序结束后,输入输出流会自动关闭。但显式关闭输入输出流是一个好习惯。关闭输入输出流的代码如下:
Is.close(); os.close();
最后给一段实例代码:
// 192.168.17.156是PC的IP地址,读者需要将这个IP换成自己机器的IP String uploadUrl = "http://192.168.17.82:8080/upload/UploadServlet"; String end = "\r\n"; String twoHyphens = "--"; // 两个连字符 String boundary = "******"; // 分界符的字符串 URL url = new URL(/blog_article/uploadUrl/index.html); HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection(); // 要想使用InputStream和OutputStream,必须使用下面两行代码 httpURLConnection.setDoInput(true); httpURLConnection.setDoOutput(true); httpURLConnection.setUseCaches(false); // 设置HTTP请求方法,方法名必须大写,例如,GET、POST httpURLConnection.setRequestMethod("POST"); httpURLConnection.setRequestProperty("Connection", "Keep-Alive"); httpURLConnection.setRequestProperty("Charset", "UTF-8"); // 必须在Content-Type请求头中指定分界符中的任意字符串 httpURLConnection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary); // 获得OutputStream对象,准备上传文件 DataOutputStream dos = new DataOutputStream (httpURLConnection.getOutputStream()); // 设置分界符,加end表示为单独一行 dos.writeBytes(twoHyphens + boundary + end); // 设置与上传文件相关的信息 dos.writeBytes("Content-Disposition: form-data; name=\"file\"; filename=\"" + filename.substring(filename.lastIndexOf("/") + 1) + "\"" + end); // 在上传文件信息与文件内容之间必须有一个空行 dos.writeBytes(end); // 开始上传文件 FileInputStream fis = new FileInputStream(filename); byte[] buffer = new byte[8192]; // 8k int count = 0; // 读取文件内容,并写入OutputStream对象 while ((count = fis.read(buffer)) != -1) { dos.write(buffer, 0, count); } fis.close(); // 新起一行 dos.writeBytes(end); // 设置结束符号(在分界符后面加两个连字符) dos.writeBytes(twoHyphens + boundary + twoHyphens + end); dos.flush(); // 开始读取从服务端传过来的信息 InputStream is = httpURLConnection.getInputStream(); InputStreamReader isr = new InputStreamReader(is, "utf-8"); BufferedReader br = new BufferedReader(isr); String result = br.readLine(); Toast.makeText(this, result, Toast.LENGTH_LONG).show(); dos.close(); is.close();
最后附上转载的网址:http://blog.csdn.net/lego2816/article/details/6691853
DownloadProvider的权限级别改成normal了就可以使用了 网上也有说明
首先要在AndroidManifest.xml中申请访问DownloadManager的权限
<permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"/>
添加一个下载任务:
ContentValues values = new ContentValues();
values.put(Downloads.URI, url);//指定下载地址
values.put(Downloads.COOKIE_DATA, cookie);//如果下载Server需要cookie,设置cookie
values.put(Downloads.VISIBILITY,Downloads.VISIBILITY_HIDDEN);//设置下载提示是否在屏幕顶部显示
values.put(Downloads.NOTIFICATION_PACKAGE, getPackageName());//设置下载完成之后回调的包名
values.put(Downloads.NOTIFICATION_CLASS,
DownloadCompleteReceiver.class.getName());//设置下载完成之后负责接收的Receiver,这个类要继承
BroadcastReceiver
values.put(Downloads.DESTINATION,save_path);//设置下载到的路径,这个需要在Receiver里自行处理
values.put(Downloads.TITLE,title);//设置下载任务的名称
this.getContentResolver().insert(Downloads.CONTENT_URI, values);//将其插入到DownloadManager的数据库中,数据库会触发修改事件,启动下载任务
self.photoSource = [[MockPhotoSource alloc] initWithType:MockPhotoSourceNormal title:@"Flickr Photos" pictures:[[NSArray alloc] initWithObjects: [[[MockPhoto alloc] initWithURL:@"http://farm4.static.flickr.com/3081/3164978791_3c292029f2.jpg?v=0" smallURL:@"documents://xxxx.png" size:CGSizeMake(320, 480)] autorelease] 1.@"bundle://pictures/abc/1234.jpg" 2.@"documents://xxxx.png" 3.@"http://farm4.static.flickr.com/3081/3164978791_3c292029f2.jpg?v=0"