-2
在我的應用我想從URL顯示HTML:https://translate.google.com/?hl=vi#en/vi/hello 我嘗試室內用它代碼:GET HTML從URL的Android
public class MainActivity extends ActionBarActivity {
TextView tv1, tv2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
HttpParams httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters,3000); // 3s max for connection
HttpConnectionParams.setSoTimeout(httpParameters, 4000); // 4s max to get data
HttpClient httpclient = new DefaultHttpClient(httpParameters); // Create HTTP Client
HttpGet httpget = new HttpGet("https://translate.google.com/?hl=vi#en/vi/hello"); // Set the action you want to do
HttpResponse response;
try {
response = httpclient.execute(httpget);
// Executeit
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent(); // Create an InputStream with the response
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) // Read line by line
sb.append(line + "\n");
String resString = sb.toString(); // Result is here
Log.d("VD",resString);
is.close(); // Close the stream
//You can also add some params to the HttpClient to manage timeout and other stuff like that. Ex :
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我說:
<uses-permission android:name="android.permission.INTERNET" />
但它不能正常工作。
如果你可以得到價值