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

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

黄舟
黄舟Original
2017-10-09 10:04:301601browse

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);
    }
  }
}

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!

Statement:
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