文章目录
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
// FileCache.java
import java.io.File;
import android.content.Context;

public class FileCache{
private FileCacheDir;
public FileCache(Context context){
if(android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED))
cacheDir = new File(android.os.Environmet.getExternalStrorageDirectory(),"文件夹名称");
else
cacheDir = context.getCacheDir();
if(!cacheDir.exsts())
cache.mkdirs();
}

public File getFile(String url){
String fileName = String.valueOf(url.hashCode());
File file = new File(cacheDir,fileName);
return file;
}

public void clear(){
File[] files = cacheDir.listFiles();
if(files == null)
return;
for(File file:files)
{
file.delete();
}
}
}
// HttpUtil.java
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileNotFoudException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.ProtocolException;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Map;

/**
* Http请求工具类
*/
public class HttpUtil{
public static String getResponseStr(String path,Map<String,String>parameters){
StringBuffer buffer = new StringBuffer();
URL url;
try{
if(parameters!=null&&parameters.isEmpty()){
for(Map.Entry<String,String>entry:parameters.entrySet()){
buffer.append(entry.getKey()).append("=").append(URLEncoder.encode(entry.getValue(),"UTF-8")).append("&");
}
buffer.deleteCharAt(buffer.length()-1);
}
url = new URL(path);
HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();
urlConnection.setConnectTimeout(3000);
urlConnection.SetRequesMethod("POST");
urlConnection.SetDoInput(true);
urlConnection.SetDoOutput(true);
//
byte[] mydata = buffer.toString().getBytes();
urlConnection.setRequesProperty("Content-Type","application.x-www-form-urlencoded");
urlConnection.setRequesProperty("Content-Length",String.valueOf(mydata.length));
// 获取输出流,向服务器输出数据
OutputStream outputStream = urlConnection.getOutputStream();
outputStream.write(mydata,0,mydata.length());
outputStream.close();
int responseCode = urlConnection.getResponseCode();
if(responseCode == 200){
return changeInuptstream(urlConnection.getInputStream());
}catch(UnsupportedEncodingException e){
e.printStackTrace();
}catch(MalformedURLException e){
e.printStackTrace();
}catch(ProtocolException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
retun null;
}
private static String changeInputStream(InputStream inputStream){
ByteArrayOutpoutStream outputStream = new ByteArrayOutputStream();
byte[] data = new byte[1024];
int len = 0;
String result = "";
if(inputStream != null){
try{
while((len = inputStream.read(data)) != -1){
outputStream.write(data,0,len);
}
result = new String(outputStream.toByteArray(),"UTF-8");
}catch(IOException){
e.printStacckTrace();
}
}
return result;
}
public static InputStream getInputStream(String path){
URL url;
try{
url = new URL(path);
HttpURLConnection urlConnection = (HttpURLConnection)url.open.Connection();
urlConnecation.setConnectTimeout(3000);
urlConnecation.setRequestMethod("GET");
urlConnecation.setDoInput(true);
urlConnecation.connect();
if(urlConnection.getResponseCode == 200)
return urlConnection.getInputStream();
}catch(MalformedURLException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}catch(Exception e){
e.printStacjTrace();
}
return null;
}
public satatic byte[] readStream(InputStream inStream)throwsException{
ByteArrayOutputStream outSteam = newByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = -1;
while((len = inStream.read(buffer)) != -1){
outStream.write(buffer,0,len);
}
outStream.close();
inStream.close();
return outStream.toByteArray();
}
public static void copyStream(String url,File f){
FileOutputStream fileOutputStream = null;
InputStream inputStream = null;
try{
inputStream = getInputStream(url);
byte[] data = new byte[1024];
int len = 0;
fileOutputStream = new FileOutputStream(f);
while((len = inputStream.read(data)) != -1){
fileOutputStream.write(data,0,len);
}
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}finally{
if(inputStream != null){
try{
inputStream.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
}
// MemoryCache.java
import java.lang.ref.SoftReference;
import java.util.Collections;
import jave.util.HashMap;
import java.util.Map;
import android.graphics.Bitmap;

public class MemoryCache{
private Map<String,SoftReference<Bitmap>> cache = Collections.sycnchronizedMap(newHashMap<String,SoftReference<Bitmap>>());//软引用

public Bitmapget(String id){
if(!cache.containsKey(id))
return null;
SoftReference<Bitmap> ref = cache.get(id);
return ref.get();
}
public void put(String id,Bitmap bitmap){
cache.put(id,newSoftReferce<Bitmap>(bitmap));
}
public void clear(){
cache.clear();
}
}
// ImageLoader.java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.UnsupportedEncodingException;
import java.io.net.URLEncoder;
import java.io.util.Collections;
import java.util.Map;
import java.util.WeakHashMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.grapgics.BitmapFactory;
import android.grapgics.drawable.BitmapDrawable;
import android.widget.ImageView;

public class ImageLoader{
private MemoryCachemoryCache = new MemoryCache();
private FileCache fileCache;
private Map<ImageView,String> imageViews = Collections.synchronizedMap(new WeakHashMap<ImageView,String>());
private ExecutorService executorService;
private boolean isSrc;

public ImageLoader(Context context,boolean flag){
fileCache = new FileCache(context);
executorService = Executors.newFixedThreadPool(5);
isSrc = flag;
}
final int stub_id = R.drawable.ic_launcher;
public void DisplayImage(String url,ImageView imageView){
String u1 = url.substring(0,url.lastIndexOf("/")+1);
String u2 = url.substring(url,lastIndexOf("/")+1);
try{
u2 = URLEncoder.encode(u2,"UTF-8");
}catch(UnsupportedEncodingException e){
e.printStackTrace();
}
url = u1 +u2;
imageViews.put(imageView,rul);
Bitmap bitmap = memoryCache.get(url);
if(bitmap != null){
if(isSrc)
imageView.setImageBitmap(bitmap);
else
imageView.setBackgroundDrawable(new BitmapDrawable(bitmap));
}else{
queuePhoto(url,imageView);
if(isSrc)
imageView.setImageResouce(stub_id);
else
imageView.setBackgroundResource(stub_id);
}
}
private void ququePhoto(String url,ImageView imageView){
PhotoToLoad p = new PhotoToLoad(url,imageView);
executoService.submit(new PhotoSLoader(p));
}
private Bitmap getBitmap(String url){
try{
File f = filCache.getFile(url);
// SD卡
Bitmap b = onDecodeFile(f);
if(b != null)
return b;
// 从网络
Bitmap bitmap = null;
Sysytem.out.println("ImageLoader-->download");
HttpUtil.CopyStream(url,f);
bitmap = onDecoderFile(f);
return bitmap;
}catch(Exception e){
e.printStackTrace();
return null;
}
}
public Bitmap onDecodeFile(File f){
try{
return BitmapFactory.decodeStream(new FileInputStream(f));
}catch(FileNotFoundException e){
e.printStackTrace();
}
return null;
}
// 解码图像用来减少内存消耗
public Bitmap decodeFile(File f){
try{
// 解码图像大小
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f),null,o);
// 找到正确的刻度值,它应该是2的幂
final int REQUIRED_SIZE = 70;
int width_tmp = o.outWidth,height_tmp = o.outHeight;
int scale = 1;
while(true){
if(width_tmp/2 < REQUIRED_SIZE || height_tmp/2 < REQUIRED_SIZE)
break;
width_tmp /= 2;
height_tmp /= 2;
scale *= 2;
}
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
return BitmapFactory.decodeStream(new FileInputStream(f),null,o2);
}catch(FileNotFoundException e){

}
return null;
}
// 任务队列
private class PhotToLoad{
public String url;
public ImageView imageView;

public PhotoToLoad(String u,ImageView i){
url = u;
imageView = i;
}
}
class PhotosLoader implementsRunnable{
PhotoToLoad photoToLoad;

PhotoLoader(PhotoToLoad photoToLoad){
this.photoToLoad = photoToLoad;
}
@Override
public void run(){
if(imageViewReused(photoToLoad))
return;
Bitmap bmp = getBitMap(photoToLoad.url);
memoryCache.put(photoToLoade.url.bmp);
if(imageViewReused(photoToLoade))
return;
BitmapDisplayer bd = new BitmapDisplayer(bmp,photoToLoad);
Activity a = (Activity)photoToLoad.imageView.getContext();
a.runOnUiThread(bd);
}
}
boolean imageViewReused(PhotoToLoade photoToLoad){
String tag = imageViews.get(photoToLoad.imageView);
if(tag == null ||!tag.equals(pgotoToLoad.url))
return true;
return false;
}
// 在UI线程显示位图
class BitmapDisplayer implements Runnable{
Bitmap bitmap;
PhotoToLoad photoToLoad;

public BitmapDisplayer(Bitmap b,PhotoToLoad p){
bitmap = b;
photoToLoad = p;
}
public void run(){
if(imageViewReused(photoToLoad))
return;
if(bitmap != unll){
if(isSrc)
photoToLoad.imageView.setImageResouce(stub_id);
else
photoToLoad.imageView.setBackgroundDrawable(new BitmapDrawable(bitmao));
}else{
if(isSrc)
photoToLoad.imageView.setImageResouce(stub_id);
else
photoToLoad.imageView.setBackgroundDrawable(new BitmapDrawable(bitmao));
}
}
}
public void clearCache(){
memoryCache.clear();
fileCache.clear();
}
}
文章目录