Android用戶端與電腦伺服器端

來源:互聯網
上載者:User

import java.io.*;  import java.net.ServerSocket;  import java.net.Socket;  import java.util.*;  public class MyServer {        public static void main(String[] args) throws Exception{          ServerSocket server=new ServerSocket(1000);          Socket clink=server.accept();          PrintStream out=new PrintStream(clink.getOutputStream());          BufferedReader in=new BufferedReader(new InputStreamReader(clink.getInputStream()));          StringBuffer bu=new StringBuffer();          bu.append("Andorid: ");          bu.append(in.readLine());          out.println(bu);                    in.close();          out.close();          clink.close();          server.close();      }    }    Andorid用戶端第一步:main.xml[java] <?xml version="1.0" encoding="utf-8"?>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="fill_parent"      android:layout_height="fill_parent"      android:orientation="vertical" >             <Button          android:id="@+id/send"           android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:text="串連ServerSocket程式" />        <TextView          android:id="@+id/info"          android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:text="等待程式的串連" />    </LinearLayout>     第二步:編寫JAVA 類 [java]  package com.android.main;    import java.io.BufferedReader;  import java.io.InputStreamReader;  import java.io.PrintStream;  import java.net.Socket;    import android.app.Activity;  import android.os.Bundle;  import android.view.View;  import android.view.View.OnClickListener;  import android.widget.Button;  import android.widget.TextView;    public class ActivityMain extends Activity {      private Button button;      private TextView textView;      public void onCreate(Bundle savedInstanceState) {                   super.onCreate(savedInstanceState);          setContentView(R.layout.main);          button=(Button)this.findViewById(R.id.send);          textView=(TextView)this.findViewById(R.id.info);          button.setOnClickListener(new SendOnclickListener());      }      class SendOnclickListener  implements OnClickListener {                    public void onClick(View v) {              try{                  Socket clink=new Socket("10.10.104.57",1000);                  PrintStream out=new PrintStream(clink.getOutputStream());                  BufferedReader in=new BufferedReader(new InputStreamReader(clink.getInputStream()));                  out.println("發送資訊給ServerSocket");                  ActivityMain.this.textView.setText(in.readLine());                                    in.close();                  out.close();                  clink.close();                                }              catch(Exception e){                                }                        }                }  }    第三步:添加Internet許可權 [java]  <?xml version="1.0" encoding="utf-8"?>  <manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="com.android.main"      android:versionCode="1"      android:versionName="1.0" >        <uses-sdk android:minSdkVersion="10" />      <uses-permission android:name="android.permission.INTERNET"/><!-- 添加Internet許可權 -->        <application          android:icon="@drawable/ic_launcher"          android:label="@string/app_name" >          <activity              android:name=".ActivityMain"              android:label="@string/app_name" >              <intent-filter>                  <action android:name="android.intent.action.MAIN" />                    <category android:name="android.intent.category.LAUNCHER" />              </intent-filter>          </activity>      </application>    </manifest>   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.