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

📄 execrequest.java

📁 银行项目为后台socket通信写的程序
💻 JAVA
字号:
/****************************************************************************
 * Package		: com.ecSolutions.ecAppServer.appSession
 * File			: ExecRequest.java
 * Create Date  : 2007-7-21
 * Author		: Steven Chen
 * 
 * Copyright(C) 2006 ecSolutions(shanghai) Co.,Limited.All Rights Reserved.
 *			
 ***************************************************************************/
package com.ecSolutions.ecAppServer.appSession;

public class ExecRequest {
	private String messageSize;
	private String messageType;
	private String sessionID;
	private String transactionName;
	private String userId;
	
	
	public ExecRequest(String request) {
		this.messageSize = request.substring(0, 4);
		this.messageType = request.substring(4, 8);
		this.sessionID   = request.substring(8, 12);
		this.transactionName 	 = request.substring(12, 20);
		this.userId 	 = request.substring(20, 30);
	}


	public String getMessageSize() {
		return messageSize;
	}


	public String getMessageType() {
		return messageType;
	}


	public String getSessionID() {
		return sessionID;
	}


	public String getTransactionName() {
		return transactionName;
	}


	public String getUserId() {
		return userId;
	}


	

}

⌨️ 快捷键说明

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