⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 niceserverthread.java

📁 Java Switch On/Off source
💻 JAVA
字号:

import java.io.*;
import java.net.Socket;
import java.text.SimpleDateFormat;
import java.util.Date;

@SuppressWarnings("unchecked")
public class NiceServerThread extends Thread {
	
	private static final String DW_DNS = "192.168.10.199";
	private static final int DW_TELENT_PORT = 9023;
	private static final int DW_FTP_PORT = 9021;
	
	private static final String CODE_ERROR = "1151";
	private static final String CODE_ARRIVED = "1152";
	private static final String CODE_CANCEL = "1153";
	
	
	private Socket sock = null;
	private NiceServer server = null;
	private BufferedReader br = null;
	private PrintWriter pw = null;
	
	
	String SEND_MSG = "";
	
	
	public NiceServerThread(NiceServer server, Socket sock) throws IOException {
		
		this.server = server;
		this.sock = sock;
		
		InputStream in = sock.getInputStream();
		OutputStream out = sock.getOutputStream();
		
		br = new BufferedReader(new InputStreamReader(in));
		pw = new PrintWriter(new OutputStreamWriter(out));
		
	}
	
	public void run() {
		
		String line = null;
		long TIME = 0L;
		
		try {
			
			while ((line = br.readLine()) != null) {
				System.out.println("荐脚茄 巩磊辨捞: " + line.length());
				System.out.println("荐脚茄 巩磊凯 : " + line);
			}	
			
		} catch (Exception ex) {
			System.out.println(ex);
		} finally {
			try {
				if (br != null) br.close();
				if (pw != null) pw.close();
				if (sock != null) sock.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -