我正在使用Netbeans7.2并输入了uses-permission也有但是我有这个错误Java.net.Socket Exception Internet否认(可能缺少互联网权限)`我的AndroidManifest文件是这样的
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="importacao.dados"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" >
<activity android:name="importacao"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<uses-permission android:name="android.permission.INTERNET" />
</intent-filter>
</activity>
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud)
//按钮
cliente.setOnClickListener(new Button.OnClickListener(){
public void onClick(View view){
InputStream is = null;
ArrayList namevaluePairs = new ArrayList();
List r = new ArrayList();
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost;
httppost = new HttpPost("http://localhost/cliente.php");
httppost.setEntity(new UrlEncodedFormEntity(namevaluePairs));
HttpResponse response;
response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
}
catch(Exception …Run Code Online (Sandbox Code Playgroud)