oschina中沒有代碼插入,看帶有代碼的文章挺費勁的,若是你和我同樣java
請移步:http://blog.csdn.net/michael_yy/article/details/7883621 或者個人我的網站 http://www.devchina.comandroid
首先咱們來看下單例模式的定義:安全
定義:在整個應用中,保證一個類只有一個實例,它提供了一個能夠訪問到它本身的全局訪問點(靜態方法)。網絡
單例模式中有區分了懶漢式和餓漢式,懶漢式主要是用時間來換空間,餓漢式則是用空間來換時間。餓漢式是線程安全的,懶漢式是非線程安全的,若是要實現懶漢式的非線程安全,則能夠再訪問點添加synchronized關鍵字聲明便可。在其餘的一些項目中還使用了雙重檢測枷鎖機制。架構
如今咱們來看下代碼,我會提供代碼下載供你們參考。app
AndroidManifest.xml文件ide
<?xml version="1.0" encoding="utf-8"?>工具
<manifest xmlns:android="http://schemas.android.com/apk/res/android"優化
package="com.yangfuhai.singleton"網站
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".SingletonActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
注意添加:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
用於訪問網絡
activity代碼 SingletonActivity
package com.yangfuhai.singleton;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
/**
* @title 單例模式
* @description 單例模式
* @company 探索者網絡工做室(www.tsz.net)
* @author michael Young (www.YangFuhai.com)
* @version 1.0
* @created 2012-8-19
*/
public class SingletonActivity extends Activity {
TextView mTv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mTv = (TextView) findViewById(R.id.textView);
mTv.setText("正在加載www.devchina.com數據。。。");
new Thread(new Runnable() {
@Override
public void run() {
final String strContext = HttpUtils.get().getUrlContext("http://www.devchina.com");
runOnUiThread(new Runnable() {
@Override
public void run() {
if(strContext!=null)
mTv.setText(strContext);
else
mTv.setText("加載失敗。。。");
}
});
}
}).start();
}
}
http訪問網絡代碼HttpUtils,用單例模式實現
package com.yangfuhai.singleton;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import android.util.Log;
/**
* @title Http請求工具類
* @description 請求http數據,單例模式
* @company 探索者網絡工做室(www.tsz.net)
* @author michael Young (www.YangFuhai.com)
* @version 1.0
* @created 2012-8-19
*/
public class HttpUtils {
private static final String DEBUG_TAG = "HttpUtils";
private HttpUtils() {} //單例模式中,封閉建立實例接口
private static HttpUtils httpUtils = null;
//提供了一個能夠訪問到它本身的全局訪問點
public static HttpUtils get(){
if(httpUtils == null)
httpUtils = new HttpUtils();
return httpUtils;
}
/**
* 獲取某個url的內容
* @param strUrl
* @return
*/
public String getUrlContext(String strUrl){
InputStream is = null;
int len = 500;
try {
URL url = new URL(strUrl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(10000 /* milliseconds */);
conn.setConnectTimeout(15000 /* milliseconds */);
conn.setRequestMethod("GET");
conn.setDoInput(true);
conn.connect();
int response = conn.getResponseCode();
Log.d(DEBUG_TAG, "The response is: " + response);
is = conn.getInputStream();
//這裏指獲取了500(len=500)字節,若是想
//整個網頁所有獲取能夠用conn.getContentLength()來代替len
String contentAsString = readInputStream(is, len);
return contentAsString;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return null;
}
/**
* 讀取 InputStream 內容
* @param stream
* @param len
* @return
* @throws IOException
* @throws UnsupportedEncodingException
*/
public String readInputStream(InputStream stream, int len) throws IOException, UnsupportedEncodingException {
Reader reader = null;
reader = new InputStreamReader(stream, "UTF-8");
char[] buffer = new char[len];
reader.read(buffer);
return new String(buffer);
}
}
源碼下載地址:
http://download.csdn.net/detail/michael_yy/4511109
你們多多指教,轉載請註明來之 www.devchina.com 或者 csdn, 謝謝。
謝謝你們關注,我繼續在博客中講解了經典的23中模式中在android實際項目中靈活運用,下一篇 《Android也架構之三:簡單工廠模式優化網絡請求》敬請關注。