2010-04-30 12 views
10

मैं svn.apache.org से http-cleint ट्यूटोरियल का प्रयास कर रहा था। एप्लिकेशन चलाते समय मुझे कंसोल में निम्न त्रुटि मिल रही है।एंड्रॉइड: HTTP क्लाइंट

[2010-04-30 09:26:36 - HalloAndroid] ActivityManager: java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.org.example/.HalloAndroid } from null (pid=-1, uid=-1) requires android.permission.INTERNET 

मैंने AndroidManifest.xml में android.permission.INTERNET जोड़ा है।

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
     package="com.org.example" 
     android:versionCode="1" 
     android:versionName="1.0"> 
    <application android:icon="@drawable/icon" android:label="@string/app_name"> 
     <activity android:name=".HalloAndroid" 
        android:label="@string/app_name" android:permission="android.permission.INTERNET"> 
      <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> 

</manifest> 

HalloAndroid.java में जावा कोड के रूप में

HttpClient httpclient = new DefaultHttpClient(); 
    HttpGet httpget2 = new HttpGet("http://google.com/"); 
     HttpResponse response2 = null; 
     try { 
      response2 = httpclient.execute(httpget2); 
     } catch (ClientProtocolException e1) { 
      // TODO Auto-generated catch block 
      e1.printStackTrace(); 
     } catch (IOException e1) { 
      // TODO Auto-generated catch block 
      e1.printStackTrace(); 
     } 
    HttpEntity entity = response2.getEntity(); 
    if (entity != null) { 
     long len = entity.getContentLength(); 
     if (len != -1 && len < 2048) { 
      try { 
        Log.d(TAG, EntityUtils.toString(entity)); 
       } catch (ParseException e) { 
        // TODO Auto-generated catch block 
        e.printStackTrace(); 
       } catch (IOException e) { 
        // TODO Auto-generated catch block 
        e.printStackTrace(); 
       } 
     } else { 
      // Stream content out 
     } 

किसी भी मदद की बहुत सराहना कर रहा है इस प्रकार है।

उत्तर

9

समस्या हल हो गई। AndroidManifest.xml फ़ाइल में यह पंक्ति समस्या का कारण बन रही थी।

android:permission="android.permission.INTERNET" 
+0

मुझे यह नहीं मिला कि त्रुटि क्या थी? –

+0

काफी संभावना है, यह अनुमति मैनिफेस्ट में नहीं जोड़ा गया था। –

संबंधित मुद्दे