- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个程序,该程序将命令作为字符串数据接收并将其传递给正确的处理程序,如 HashMap
所定义。
将命令传递给正确处理程序的代码如下:
//This is run in its own thread, hence the run() method
@Override
public void run() {
try {
//Socket is a Socket object containing the client's connection
InputStreamReader is = new InputStreamReader(socket.getInputStream());
//MAX_MESSAGE_SIZE is an integer, specifically 1024
char[] data = new char[MAX_MESSAGE_SIZE];
is.read(data, 0, MAX_MESSAGE_SIZE);
String strData = new String(data);
//Split on UNIX or Windows type newline
String[] lines = strData.split("\\r?\\n");
//First verb determines the command
String command = (lines[0].split(": "))[0];
//Re-add the ": " because the HashMap will look for it
if (handlerMap.containsKey((command + ": "))) {
System.err.println("Got command: " + command);
AbstractHandler handler = handlerMap.get(command);
System.err.println("Passing connection + data to handler...");
handler.handleData(socket, lines);
System.err.println("Handler is done!");
} else {
System.err.println("Didn't understand command: " + command);
DataOutputStream outputStream = new DataOutputStream(socket.getOutputStream());
outputStream.writeBytes(Protocol.UNKNOWN_ERROR);
outputStream.flush();
socket.close();
}
} catch (IOException e) {
System.err.println("Caught IOException: " + e.getMessage());
}
}
HashMap
的值部分是一个实现接口(interface) AbstractHandler
的对象。 AbstractHandler
定义了一种方法: handleData(Socket s, String[]lines)
。作为引用,这里是 map 的初始化位置:
public RequestManager(Socket socket) {
this.socket = socket;
handlerMap = new HashMap<>();
handlerMap.put(Protocol.USERNAME, new AuthenticationHandler());
//Set arg to true b/c it is a set request, not a change request
handlerMap.put(Protocol.SET_PASSWORD, new ChangePasswordHandler(true));
handlerMap.put(Protocol.CHANGE_PASSWORD, new ChangePasswordHandler());
handlerMap.put(Protocol.FORGOT_PASSWORD, new ForgotPasswordHandler());
}
对象中的所有handleData
方法仅包含以下代码:
@Override
public void handleData(Socket s, String[] lines) {
clientSocket = s; //clientSocket field in class
System.err.println("Made it into handler");
}
奇怪的是,在显示“将连接+数据传递给处理程序”后,没有任何反应。我没有看到任何有关进入处理程序的信息,也没有看到异常或处理程序已完成的消息。可能是什么原因造成的?
最佳答案
您测试一下处理程序是否存在
if (handlerMap.containsKey((command + ": "))) {
但是你尝试获取一个处理程序
AbstractHandler handler = handlerMap.get(command);
因此,如果 CommandName:
键存在,您可能无法使用 CommandName
键获取它。因此,在调用 handler.handleData(socket,lines);
时,您将遇到未经检查的 NullPointerException
,并且您的 runnable 将惨死。
看起来您需要更改第一个或第二个。鉴于您说您会看到它打印“将连接+数据传递给处理程序...”,我认为您需要将其更改为:
AbstractHandler handler = handlerMap.get(command + ": ");
当你处理 map 时,稍微改变一下风格就可以避免这种情况在现在和将来对你造成影响。 Map.get
returns null
if the key is not found ,所以你可以这样做:
AbstractHandler handler = handlerMap.get(command + ": ");
if (handler != null) {
/* ... */
handler.handleData(socket, lines);
System.err.println("Handler is done!");
} else {
/* ... */
}
关于基于 Java 接口(interface)的多态性未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28651337/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!