Back to project page SuiviConsoFreeMobile.
The source code is released under:
Ce logiciel est dans le domaine public.
If you think the Android project SuiviConsoFreeMobile listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.yvesd.scfm; /*w w w .j a v a2s . com*/ import org.apache.http.impl.client.DefaultHttpClient; public class TelechargeurDonnesConso extends TelechargeurGenerique { private static final String URL_CIBLE = "https://mobile.free.fr/moncompte/index.php?page=suiviconso"; public TelechargeurDonnesConso(CanWaitForStream activity, DefaultHttpClient httpClient) { super(activity, httpClient); } @Override protected String getUrlCible() { return URL_CIBLE; } }