聊天Client

LOGIN:java

import java.awt.event.WindowAdapter ;
import java.awt.event.ActionListener ;
import java.awt.event.WindowEvent ;
import java.awt.event.ActionEvent ;
import java.awt.Color ;
import java.awt.Font ;
import javax.swing.JFrame ;
import javax.swing.JButton ;
import javax.swing.JLabel ;
import javax.swing.JTextField ;
import javax.swing.JPasswordField ;
//用戶名和密碼設置
class LoginCheck{//設置登陸密碼
 private String name ;//用戶名
 private String password ;//密碼
 //構造方法
 public LoginCheck(String name,String password){
  this.name = name ;//傳遞用戶名
  this.password = password ;//傳遞密碼
 }
 //驗證用戶名和密碼
 public boolean validate(){//驗證方法
  if("y".equals(name)&&"1".equals(password)){  //判斷用戶名和密碼是否正確
   return true ;//返回true
  }else{
   return false ;//返回false
  }
 }
};
//登陸窗口
class Login{//登陸類名
 boolean f=false;//按登陸時設置的一個標誌 
 private JFrame frame = new JFrame("Welcome To MLDN") ; //設置窗體
 private JButton submit = new JButton("登錄");//設置登陸按鈕
 private JButton reset = new JButton("重置");//設置重置按鈕
 private JLabel nameLab = new JLabel("用戶名:") ;//標籤實例化
 private JLabel passLab = new JLabel("密   碼:") ;//標籤實例化
 private JLabel infoLab = new JLabel("用戶登錄系統") ;//標籤實例化
 private JTextField nameText = new JTextField(10) ;//單行文本輸入條
 private JPasswordField passText = new JPasswordField() ;//單行密碼文本輸入條
 public Login(){//登陸窗口構造方法
  Font fnt = new Font("Serief",Font.ITALIC + Font.BOLD,12) ;//設置字體
  infoLab.setFont(fnt) ; // 設置標籤的顯示文字
  submit.addActionListener(new ActionListener(){  //採用內部匿名類
  public void actionPerformed(ActionEvent e){
    if(e.getSource()==submit){   //判斷觸發器源是不是提交按鈕
     String tname = nameText.getText() ; //獲得輸入的用戶名
     String tpass = new String(passText.getPassword()) ;//獲得輸入的密碼,此時經過getPassageword()方法返回的是字符數組
     LoginCheck log = new LoginCheck(tname,tpass) ;//實例化LoginCheck對象,傳入輸入的用戶名和密碼
     if(log.validate()){//對用戶名和密碼進行驗證
      try{
       Thread.sleep(2000);  //2秒後打開聊天窗口
       f=true;       //登陸成功後的表示項爲true
       frame.dispose();    //關閉本窗口
      }catch(Exception ee){//異常獲取   
      }
     }else{
      infoLab.setText("登錄失敗,錯誤的用戶名或密碼!") ;//登陸失敗
     }
    }
   }
  }) ;
  reset.addActionListener(new ActionListener(){ //採用內部匿名類
   public void actionPerformed(ActionEvent e){
    if(e.getSource()==reset){ //判斷觸發器源是不是提交按鈕
     nameText.setText("") ;//設置文本框中的內容
     passText.setText("") ;//設置文本框中的內容
     infoLab.setText("用戶登錄系統") ;//恢復標籤顯示
    }
   }
  }) ;
  frame.addWindowListener(new WindowAdapter(){//加入窗口監聽
   public void windowClosing(WindowEvent e){
   }
  }) ; // 加入事件
  frame.setLayout(null) ;//使用絕對定位
  nameLab.setBounds(5,5,60,20) ;//設置標籤的位置及大小
  passLab.setBounds(5,30,60,20) ;//設置標籤的位置及大小
  infoLab.setBounds(5,65,220,30) ;//設置標籤的位置及大小
  nameText.setBounds(65,5,100,20) ;//設置文本域的位置及大小
  passText.setBounds(65,30,100,20) ;//設置密碼域的位置及大小
  submit.setBounds(165,5,60,20) ;//設置按鈕的位置及大小
  reset.setBounds(165,30,60,20) ;//設置按鈕的位置及大小
  frame.add(nameLab) ;//向窗體加入標籤
  frame.add(passLab) ;//向窗體加入標籤
  frame.add(infoLab) ;//向窗體加入標籤
  frame.add(nameText) ;//向窗體加入文本框
  frame.add(passText) ;//向窗體加入密碼框
  frame.add(submit) ;//向窗體加入按鈕
  frame.add(reset) ;//向窗體加入按鈕
  frame.setSize(280,130) ;//設置窗體大小
  frame.getContentPane().setBackground(Color.green) ;//設置窗體的背景顏色
  frame.setLocation(300,200) ;//設置窗體在電腦桌面上的位置
  frame.setVisible(true) ;//顯示窗口
        while(f==false){//當登陸失敗時,一直循環運行,     
        }
        new MyClient();//顯示窗體頁面
 } 
};
數組

 

TIME:服務器

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JLabel;
import javax.swing.Timer;
//時間類
public class Time {
 public Time(JLabel time){//構造方法
  this.setTimer(time);//設置時間
 }
 public void setTimer(JLabel time){    //設置時間方法
        final JLabel varTime = time;      //傳遞組件
        Timer timeAction = new Timer(1000, new ActionListener() {   //時間監聽             
            public void actionPerformed(ActionEvent e) {      
                long timemillis = System.currentTimeMillis();    //獲得系統時間                    
                SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");   //轉換日期顯示格式  
                varTime.setText(df.format(new Date(timemillis)));   //輸出獲得的時間
            }     
        });           
        timeAction.start();         //開啓線程  
    }  
}
app

 

主:socket

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.text.DateFormat;
import java.util.Date;
import javax.swing.*;
public class MyClient{
 protected JLabel lab10;//全體變量,作傳遞的一個組件  
 String s="鏈接成功";//初始字符串,在兩個聊天窗口連接成功時輸出,同時做爲兩個窗口傳遞字符的一個變量
 
 //構造方法 
 public MyClient(){  
  JFrame frame=new JFrame("用戶端窗口");  //設置窗體
  frame.setLayout(null);    //讓佈局管理器爲空 ,使用絕對定位
  Font fnt=new Font("Serief",Font.PLAIN,40);//字體設置
  Font fnt1=new Font("Serief",Font.PLAIN,20);//字體設置
  
  //個人用戶名顯示
  JLabel lab1=new JLabel("服務器名:",JLabel.LEFT);   //標籤實例化,文本左對齊
  lab1.setBounds(8, 10, 100, 20);  //設置組件位置及大小
  frame.add(lab1);     //添加組件
  JTextField text2=new JTextField(30); //單行文本輸入組件
  text2.setBounds(150, 10, 200, 20);//設置組件位置及大小
  text2.setEnabled(false);//文本條不可編輯
  text2.setText("可可聊天室");//輸入內容
  text2.setFont(fnt1);//設置字體
  frame.add(text2);//添加組件
  
  //服務器IP顯示
  JLabel lab2=new JLabel("當前服務器IP:",JLabel.LEFT);  //標籤實例化,文本左對齊
  lab2.setBounds(8, 45, 100, 20);//設置組件位置及大小
  frame.add(lab2);//添加組件
  JTextField text3=new JTextField(30);//單行文本輸入組件
  text3.setBounds(150, 45, 200, 20);//設置組件位置及大小
  text3.setEnabled(false);   //文本不可編輯
  text3.setText("127.0.0.1");//輸入內容
  text3.setFont(fnt1);//設置字體
  frame.add(text3);  //添加組件
  
  //服務器端口顯示
  JLabel lab3=new JLabel("當前服務器端口:",JLabel.LEFT);  //標籤實例化,文本左對齊
  lab3.setBounds(8, 80, 100, 20);//設置組件位置及大小
  frame.add(lab3);//添加組件
  JTextField text4=new JTextField(30);//單行文本輸入組件
  text4.setBounds(150, 80, 200, 20);//設置組件位置及大小
  text4.setEnabled(false);//文本不可編輯
  text4.setText("8888");//輸入內容
  text4.setFont(fnt1);//設置字體
  frame.add(text4);//添加組件
  
  //聊天記錄顯示
  JLabel lab4=new JLabel("聊天記錄以下:",JLabel.LEFT);  //標籤實例化,文本左對齊
  lab4.setBounds(8, 115, 100, 20);//設置組件位置及大小
  frame.add(lab4);//添加組件
  final JTextArea text1=new JTextArea();//多行文本輸入組件
  text1.setEnabled(false);//文本不可編輯
  text1.setLineWrap(true);//自動換行  
  JScrollPane scr=new JScrollPane(text1,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);  //設置滾動條,水平和垂直滾動條始終顯示
  scr.setBounds(8, 150, 450, 350);//設置組件位置及大小
  frame.add(scr);//添加組件
  
  //聊天輸入窗口及肯定
  JLabel lab5=new JLabel("請輸入聊天內容:",JLabel.LEFT);  //標籤實例化,文本左對齊
  lab5.setBounds(8, 500, 100, 20);//設置組件位置及大小
  frame.add(lab5);//添加組件
  final JTextArea text5=new JTextArea();//多行文本輸入組件
  text5.setLineWrap(true);//自動換行
  JScrollPane scr2=new JScrollPane(text5,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);//設置滾動條,水平和垂直滾動條始終顯示
  scr2.setBounds(150, 500, 300, 50);//設置組件位置及大小
  frame.add(scr2);//添加組件
     final JButton but=new JButton("肯定");//設置肯定按鈕
  but.setFont(fnt);//添加字體設置 
  but.setBounds(480, 500, 200, 50);//設置組件位置及大小
  but.addActionListener(new ActionListener(){ //採用內部匿名類
   public void actionPerformed(ActionEvent e){
    if(e.getSource()==but){ //判斷觸發器源是不是提交按鈕 
     text1.append("可可: "+lab10.getText()+"\n  ");//在聊天記錄上添加文本
     text1.append(text5.getText()+"\n");//將輸入的聊天內容輸出在聊天記錄上  
          s=text5.getText();   //獲得聊天內容
          text5.setText("");     // 將聊天窗口內容設置爲空
    }
   }
  }) ;
  frame.add(but);//添加組件 函數

  //當前時間顯示
  JLabel lab7=new JLabel("時間顯示:",JLabel.LEFT);//標籤實例化,文本左對齊
  lab7.setBounds(450, 20, 100, 20);//設置組件位置及大小
  frame.add(lab7);//添加組件    
  DateFormat df=DateFormat.getDateTimeInstance();//取得系統時間
  String df2= df.format(new Date());    //將時間轉換成字符串 
  JLabel lab8=new JLabel(df2,JLabel.LEFT);//標籤實例化,文本左對齊
  lab8.setBounds(520, 20, 130, 20);//設置組件位置及大小
  frame.add(lab8);//添加組件
  lab10=lab8; //傳遞時間顯示,以便能在聊天記錄上顯示記錄時間
  new Time(lab8);  //使時間動態顯示 
  
  //用戶列表顯示 
  JLabel lab6=new JLabel("用戶列表:",JLabel.LEFT);//標籤實例化,文本左對齊
  lab6.setBounds(500, 40, 100, 20);//設置組件位置及大小
  frame.add(lab6);//添加組件
  JTextArea text6=new JTextArea();//標籤實例化,文本左對齊
  text6.setEnabled(false);//文本不可編輯  
  text6.setLineWrap(true);//自動換行
  JScrollPane scr3=new JScrollPane(text6,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);//設置滾動條,水平和垂直滾動條始終顯示
  scr3.setBounds(460, 70, 220, 420);//設置組件位置及大小
  frame.add(scr3);//添加組件    佈局

  //窗口的屬性
  frame.setSize(700,600);//窗口大小
  frame.getContentPane().setBackground(Color.pink);//窗口的背景顏色
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//關閉窗口時關閉程序
  frame.setLocation(10,10);//在電腦桌面上出現的位置
  frame.setVisible(true);//顯示窗口 
  try{  //try異常處理
         Socket socket=new Socket("127.0.0.1",8889);    //發出鏈接請求
      //創建鏈接,經過Socket得到鏈接上的輸入/輸出流
      PrintWriter out =new PrintWriter(socket.getOutputStream());
         BufferedReader in = new BufferedReader( new InputStreamReader(socket.getInputStream()));
      //從標準輸入中讀取一行,發送Server端,當用戶輸入bye時結束鏈接
      do{ 
           while(s.equals("")||s.equals(null)){//當傳遞的字符串爲空時等待用戶輸入聊天內容                 
           }        
          if(!s.equals("")&&!s.equals(null)){//s不爲空時作         
              out.println(s);  //向其餘窗口輸出字符串                   
              s="";       //將在聊天窗口中獲得的字符串設爲空                                   
          }                                                                                 
              out.flush();//輸出聊天內容     
              if(!s.equals("bye")){ //判斷聊天是否結束              
                         String s3;  //獲得其餘窗口傳來的字符串
                         while( (s3=in.readLine()).equals("\n")&&s3.equals(null)&&s3.equals("")){//判斷s3是否爲空   ,爲空時等待         
                         }
                         text6.setText("笑笑在線"); //當鏈接成功是在用戶列表中 輸出用戶名字                          
                   if(!s3.equals("\n")&&!s3.equals(null)&&!s3.equals("")){//s3不爲空時作
             text1.append("笑笑: "+lab10.getText()+"\n  ");//在聊天記錄上添加文本
                      text1.append(s3+"\n");      //將輸入的聊天內容輸出在聊天記錄上   
                   }
              }
             字體

        }while(!s.equals("bye"));//判斷是否結束
        //關閉鏈接
        out.close();
        in.close();
        socket.close();
      }catch(Exception e){   
      }          
 }
 
 //main函數
 public static void main(String args[]){
  new Login();//登陸實現 
 }
}
this

相關文章
相關標籤/搜索