Sim, você pode fazer isso.
Materiais que você precisa:
- Servidor da Web
- Um banco de dados armazenado no servidor da Web
- E um pouco de conhecimento sobre Android :)
- Serviços da Web (json ,Xml...etc) com o que você se sentir confortável
1. Primeiro, defina as permissões da Internet em seu arquivo de manifesto
<uses-permission android:name="android.permission.INTERNET" />
2. Faça uma classe para fazer um HTTPRequest do servidor (estou usando json parisng para obter os valores)
por exemplo:
public class JSONfunctions {
public static JSONObject getJSONfromURL(String url) {
InputStream is = null;
String result = "";
JSONObject jArray = null;
// Download JSON data from URL
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
} catch (Exception e) {
Log.e("log_tag", "Error in http connection " + e.toString());
}
// Convert response to string
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result = sb.toString();
} catch (Exception e) {
Log.e("log_tag", "Error converting result " + e.toString());
}
try {
jArray = new JSONObject(result);
} catch (JSONException e) {
Log.e("log_tag", "Error parsing data " + e.toString());
}
return jArray;
}
}
3. Em sua
MainActivity
Faça um objeto da classe JsonFunctions
e passe o url como um argumento de onde você deseja obter os dados por exemplo:
JSONObject jsonobject;
jsonobject = JSONfunctions.getJSONfromURL("http://YOUR_DATABASE_URL");
4. E então, finalmente, leia as jsontags e armazene os valores em um arraylist e depois mostre-o em listview, se você quiser
e se você tiver algum problema, pode seguir este blog, ele oferece excelentes tutoriais android AndroidHive
Como a resposta acima que escrevi foi há muito tempo e agora
HttpClient
, HttpPost
,HttpEntity
foram removidos na Api 23. Você pode usar o código abaixo no build.gradle(app-level) para continuar usando org.apache.http
no seu projecto. android {
useLibrary 'org.apache.http.legacy'
signingConfigs {}
buildTypes {}
}
ou Você pode usar
HttpURLConnection
como abaixo para obter sua resposta do servidor public String getJSON(String url, int timeout) {
HttpURLConnection c = null;
try {
URL u = new URL(url);
c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setRequestProperty("Content-length", "0");
c.setUseCaches(false);
c.setAllowUserInteraction(false);
c.setConnectTimeout(timeout);
c.setReadTimeout(timeout);
c.connect();
int status = c.getResponseCode();
switch (status) {
case 200:
case 201:
BufferedReader br = new BufferedReader(new InputStreamReader(c.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
sb.append(line+"\n");
}
br.close();
return sb.toString();
}
} catch (MalformedURLException ex) {
Logger.getLogger(getClass().getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(getClass().getName()).log(Level.SEVERE, null, ex);
} finally {
if (c != null) {
try {
c.disconnect();
} catch (Exception ex) {
Logger.getLogger(getClass().getName()).log(Level.SEVERE, null, ex);
}
}
}
return null;
}
ou você pode usar uma biblioteca de terceiros como
Volley
, Retrofit
para chamar a API do webservice e obter a resposta e depois analisá-la usando FasterXML-jackson
, google-gson
.