Android Open Source - D2D_Fountain_codes_cp My Http Client






From Project

Back to project page D2D_Fountain_codes_cp.

License

The source code is released under:

GNU General Public License

If you think the Android project D2D_Fountain_codes_cp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package sonic.xud.assistclass;
/*from  w w w . j a va  2s .c om*/
import org.apache.http.client.HttpClient;
import org.apache.http.impl.client.DefaultHttpClient;

public class MyHttpClient {

  private static HttpClient httpClient;

  private MyHttpClient() {
    super();
  }
  
  public static HttpClient getHttpClient(){
    if(httpClient == null){
      synchronized (MyHttpClient.class) {
        if(httpClient == null){
          httpClient = new DefaultHttpClient();
          return httpClient;
        }
      }
    }
    return httpClient;
  }
  
}




Java Source Code List

cn.fudan.sonic.server.ServerFrame.java
cn.fudan.sonic.server.SingletonThreadPool.java
cn.fudan.sonic.util.SwingConsole.java
sonic.xud.assistclass.FinalDataSource.java
sonic.xud.assistclass.IPv4Util.java
sonic.xud.assistclass.MyHttpClient.java
sonic.xud.assistclass.SingletonThreadPool.java
sonic.xud.gwifisuperdownload.AssistActivity.java
sonic.xud.gwifisuperdownload.MainActivity.java
sonic.xud.gwifisuperdownload.SponsorActivity.java