Home > Java > javaTutorial > body text

Example analysis of using continue break to create a simple chat room in Java

黄舟
Release: 2017-10-09 10:04:30
Original
1594 people have browsed it

This article mainly introduces Java continue break to create a simple chat room program in detail. It has certain reference value. Interested friends can refer to

Java continue break to create a simple chat room program. , block uncivilized language and display the chat time of each sentence


package com.swift;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;

public class ChatWithBreakContinue {

  public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    Date date = null;
    // long timeMillis=date.getTime();
    // long timeMillis2=System.currentTimeMillis();
    System.out.println("欢迎来到简单聊天程序");
    System.out.println("请输入你的名字");
    String name = scan.nextLine();
    System.out.println("开始聊天了");
    System.out.println("说再见离开聊天");
    for (;;) {
      String msg = scan.nextLine();
      date = new Date();
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
      String time = sdf.format(date);
      if (msg.equals("再见")) {
        break;
      } else if (msg.equals("傻子")) {
        System.out.println("注意文明用语");
        continue;
      } else if (msg.equalsIgnoreCase("shazi")) {
        System.out.println("注意文明用语");
        continue;
      } else if (msg.equals("笨")) {
        System.out.println("注意文明用语");
        continue;
      }
      System.out.println("192.168.1.*" + name + "说: " + msg + " " + time);
    }
  }
}
Copy after login

The above is the detailed content of Example analysis of using continue break to create a simple chat room in Java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template