真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java網(wǎng)絡(luò)編程-TCP-雙向登錄

TCP:模擬登錄 :雙向

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比西豐網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式西豐網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋西豐地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴。

服務(wù)器

public class tcp {

public static void main(String[]args) throws IOException
{
    System.out.println("服務(wù)器啟動中...");

    ServerSocket server=new ServerSocket(8888);

    Socket client=server.accept();

    DataInputStream dis=new DataInputStream(client.getInputStream());

    String datas=dis.readUTF();
    String uname="";
    String password="";

    String[] data=datas.split("&");
    System.out.println("用戶名為:"+data[0]+"密碼為:"+data[1]);
    uname=data[0];
    password=data[1];

    //輸出
    DataOutputStream dos= new DataOutputStream(client.getOutputStream());

    if(uname.equals("杜雨龍")&&password.equals("你最帥"))
    {

        dos.writeUTF("登錄成功");
    }else
    {
        dos.writeUTF("登錄失敗");
    }
    dis.close();
    client.close();
    server.close();

}
}

客戶端:

public class tcp2 {

public static void main(String[]args) throws IOException
{
    System.out.println("發(fā)送端啟動中");
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("請輸入用戶名");
    String name =br.readLine();
    System.out.println("請輸入密碼");
    String password =br.readLine();

    Socket client=new Socket("localhost",8888);

    DataOutputStream dos= new DataOutputStream(client.getOutputStream());

    dos.writeUTF(name+"&"+password);
    dos.flush();

    DataInputStream dis=new DataInputStream(client.getInputStream());
    String result=dis.readUTF();
    System.out.println(result);

    dos.close();
    client.close();

}
}

當(dāng)前標(biāo)題:java網(wǎng)絡(luò)編程-TCP-雙向登錄
文章源于:http://weahome.cn/article/pcosdd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部