- techno_it
- 等级: 初级会员
- 性别:
- 文章: 34
- 积分: 80
- 来自: 北京
|
下面说一下我的需求:
1.要实现JAVA与VC++的SOCKET通信。
2.要使实现监听多个端口。
3.要在Servlet启动时将监听启动。
4.要实时将数据推送到页面。
———————————————————————————————————————————————————————
根据需求写的线程监听代码如下:
java 代码
- package com.test.youCompany.comet;
-
- import java.io.BufferedReader;
- import java.io.IOException;
- import java.io.InputStreamReader;
- import java.io.OutputStreamWriter;
- import java.io.PrintWriter;
- import java.net.ServerSocket;
- import java.net.Socket;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.List;
- import java.util.Map;
- import java.util.Vector;
-
- import net.sf.json.JSONArray;
- import net.sf.json.JSONException;
-
- import com.test.youCompany.core.common.Constants;
- import com.test.youCompany.core.json.JsonObjectFactory;
- import com.test.youCompany.core.util.StringUtils;
- import com.test.youCompany.domain.Yc;
- import com.test.youCompany.domain.Yx;
-
- import dojox.cometd.Bayeux;
- import dojox.cometd.Client;
-
- public class ServerThread extends Thread
- {
- public static Bayeux bayeux;
- public static Client client;
- public static final String YC = "yc";
- public static final String YX = "yx";
- public static final String TRIP = "trip";
- public static final String PRONUM = "command";
-
- Socket clientRequest;
- ServerSocket serverSocket;
- BufferedReader input;
- PrintWriter output;
- private String popedom = "";
-
- public ServerThread(int s)
- {
- ServerSocket rServer = null;
- try
- {
-
- rServer = new ServerSocket(s);
- System.out.println("Welcome to the server!");
- System.out.println(new Date());
- System.out.println("The server is ready!");
- System.out.println("Port: " + rServer.getLocalPort());
- }
- catch (IOException e)
- {
-
- e.printStackTrace();
- }
-
- this.serverSocket=rServer;
- }
- public ServerThread(int s,String yt)
- {
- ServerSocket rServer = null;
- try
- {
-
- rServer = new ServerSocket(s);
- System.out.println("Welcome to the server!");
- System.out.println(new Date());
- System.out.println("The server is ready!");
- System.out.println("Port: " + rServer.getLocalPort());
- this.setPopedom(yt);
- }
- catch (IOException e)
- {
-
- e.printStackTrace();
- }
-
- this.serverSocket=rServer;
- }
- public static void setBayeux(Bayeux bayeux)
- {
- ServerThread.bayeux = bayeux;
- ServerThread.client =bayeux.newClient(Constants.DFDATACLENT, null);
-
- }
- public void run()
- {
- InputStreamReader reader;
- boolean done=false;
- while(!done)
- {
- try
- {
- this.clientRequest = this.serverSocket.accept();
-
- if(clientRequest != null)
- {
- reader=new InputStreamReader(clientRequest.getInputStream());
- input=new BufferedReader(reader);
-
- while (true)
- {
- String message = input.readLine();
- if (message == null)
- break;
-
-
- if(this.popedom.equalsIgnoreCase(ServerThread.YC))
- {
- if(message.endsWith("]]"))
- sendDataToView(message,ServerThread.YC);
- }
- else if(this.popedom.equalsIgnoreCase(ServerThread.YX))
- {
- if(message.endsWith("]]"))
- sendDataToView(message,ServerThread.YX);
- }
- else if(this.popedom.equalsIgnoreCase(ServerThread.TRIP))
- {
-
- }
- else if(this.popedom.equalsIgnoreCase(ServerThread.PRONUM))
- {
-
- }
-
-
- }
- try
- {
- Thread.sleep(300);
- }
- catch (InterruptedException e)
- {
-
- e.printStackTrace();
- }
- }
- else
- {
- try
- {
- Thread.sleep(300);
- }
- catch (InterruptedException e)
- {
-
- e.printStackTrace();
- }
- }
- }
- catch(IOException e)
- {
- System.out.println(e.getMessage());
- }
- }
- try
- {
- clientRequest.close();
- }
- catch(IOException e)
- {
- System.out.println(e.getMessage());
- }
-
- }
- public void sender(String command)
- {
- OutputStreamWriter writer;
- try
- {
- writer=new OutputStreamWriter(clientRequest.getOutputStream());
- output=new PrintWriter(writer,true);
- }
- catch(IOException e)
- {
- System.out.println(e.getMessage());
- }
- output.println(command);
- }
-
-
-
-
- private void sendDataToView(String message, String str)
- {
- if(bayeux != null && client != null)
- {
- String result;
- Map msg = new HashMap();
- if(this.popedom.equalsIgnoreCase(ServerThread.YC))
- {
- result = getYcDataView(message);
- if(result != null)
- msg.put("chat", result);
- }
- else if(this.popedom.equalsIgnoreCase(ServerThread.YX))
- {
- result = getYxDataView(message);
- if(result != null)
- {
- msg.put("chat", result);
-
- }
- }
- bayeux.publish(client,"/dfChat/" + str,msg,""+msg.hashCode());
-
- }
- }
- private void pushDataToBus(List<yc></yc> list)
- {
-
- }
- @SuppressWarnings("unchecked")
- private String getYcDataView(String message)
- {
- int i = 0;
- int j = 0;
- try
- {
- List
<list></list>
ycData = JsonObjectFactory.getNomalList(message);
- List<yc></yc> jsonData = new Vector<yc></yc>();
- for(Iterator
<list></list>
equipment = ycData.iterator(); equipment.hasNext();i++)
- {
- List ycList = equipment.next();
- for(Iterator ycValue = ycList.iterator();ycValue.hasNext();j++)
- {
- Yc singleData = new Yc();
- singleData.setModtime(new Date());
- try
- {
- singleData.setValue((Double)ycValue.next());
- }
- catch(ClassCastException e)
- {
- singleData.setValue(Double.valueOf(ycValue.next().toString() + ".0"));
- }
- singleData.setStationid(i);
- singleData.setYcid(j);
- jsonData.add(singleData);
-
- }
- j = 0;
- }
- pushDataToBus(jsonData);
- return JSONArray.fromCollection(jsonData, StringUtils.getStrings(Constants.YCNONEED)).toString();
- }
- catch(JSONException e)
- {
- System.out.println(e.getMessage());
- return null;
- }
- catch(Exception e)
- {
- System.out.println(e.getMessage());
- return null;
- }
- }
- @SuppressWarnings("unchecked")
- private String getYxDataView(String message)
- {
- int i = 0;
- int j = 0;
- try
- {
- List> ycData = JsonObjectFactory.getNomalList(message);
- List<yx></yx> jsonData = new Vector<yx></yx>();
- for(Iterator> equipment = ycData.iterator(); equipment.hasNext();i++)
- {
- List<integer></integer> yxList = equipment.next();
- for(Iterator<integer></integer> yxValue = yxList.iterator();yxValue.hasNext();j++)
- {
- Yx singleData = new Yx();
- singleData.setStationid(i);
- singleData.setYxid(j);
- singleData.setValue(yxValue.next());
- jsonData.add(singleData);
- }
- j = 0;
- }
-
- return JSONArray.fromCollection(jsonData, StringUtils.getStrings(Constants.YXNONEED)).toString();
- }
- catch(JSONException e)
- {
- System.out.println(e.getMessage());
- return null;
- }
- }
- private void setPopedom(String popedom)
- {
- this.popedom = popedom;
- }
-
- }
Servlet代码如下:
java 代码
- package com.test.youCompany.comet;
-
- import javax.servlet.ServletConfig;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
-
- import com.test.youCompany.core.common.Constants;
- import com.test.youCompany.core.common.DFPropertyOwner;
- import com.test.youCompany.core.util.StringUtils;
-
- public class JMessagePushServlet extends HttpServlet
- {
-
-
-
-
- private static final long serialVersionUID = -832833032007994994L;
- final int RECEIVE_PORT = 9090;
- public void init(ServletConfig servletConfig) throws ServletException
- {
- super.init(servletConfig);
- Thread serverThread = null;
- try
- {
-
- String [] ports = StringUtils.getStrings(DFPropertyOwner.getKeyValue("ArrPort", Constants.GLOBAL_PROPERTIES));
- String [] portsRight = StringUtils.getStrings(DFPropertyOwner.getKeyValue("PortRights", Constants.GLOBAL_PROPERTIES));
- for(int i = 0;i
- {
- if(i < portsRight.length)
- serverThread = new ServerThread(Integer.valueOf(ports[i]),portsRight[i]);
- else
- serverThread = new ServerThread(Integer.valueOf(ports[i]));
- serverThread.setName(Constants.THREANNAMES + i);
- serverThread.start();
- }
- System.out.println("线程开始启动");
- }
- catch (Exception e)
- {
- System.out.println(e.getMessage());
- }
- }
-
- }
以下是WEB.xml配置
java 代码
- <servlet></servlet>
- <servlet-name></servlet-name>MessageServer
- class>com.test.youCompany.comet.JMessagePushServletclass>
- <load-on-startup></load-on-startup>1
-
———————————————————————————————————————————————————————
在使用过程这种方法还是有一些弊端,它的效率不高,在处理大的数据时可能产生错误,比如接受到的是坏数据,等。在网上略看了一下NIO的实现,以后我尝试。
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
|
返回顶楼 |
|
|
- liuweipeng
- 等级: 初级会员
- 性别:
- 文章: 11
- 积分: 30
- 来自: 北京
|
楼主,你好,看了你的帖子,和我要做的项目很相似,和你的思路基本一样,就是在实时将数据推送到页面的方面有些问题,我采用的dwr框架的长连接技术,但是无法长期保持连接,超过一定时间后就出现异常,请问楼主在这方面是如何解决的!
|
返回顶楼 |
|
|
- myworkfirst
- 等级: 初级会员
- 文章: 305
- 积分: 67
|
二楼的朋友,你好. 我现在也在开发 java程序与vc++程序之间的通讯.不过没用到servlet. 对于你的问题,我认为你可能没有发送心跳包(有的也称之为测试包,或者链路包). 如果是长连接,一般会有连接时间,长时间不发心跳包,服务端就会断开连接.
解决办法: 开启一个 Timer,间隔几秒之内,发送心跳包.心跳包很小.
|
返回顶楼 |
|
|
- liuweipeng
- 等级: 初级会员
- 性别:
- 文章: 11
- 积分: 30
- 来自: 北京
|
谢谢三楼朋友,冒昧的问一句,你没有用serverlet,你采用什么了?
|
返回顶楼 |
|
|
- dengtl
- 等级: 初级会员
- 文章: 58
- 积分: 20
- 来自: ...
|
数据接收后,把其推送到页面部分可以做优化。
将其推送到一个缓冲区,由一个线程专门处理数据推送,这样可能效率稍微高一点。
|
返回顶楼 |
|
|
- liuweipeng
- 等级: 初级会员
- 性别:
- 文章: 11
- 积分: 30
- 来自: 北京
|
对于多用户同时访问的时候,暂不考虑性能,如何对于实时消息如何区分开,并且发送给不同的用户,也就是对于多线程方面如何处理,请指教。
|
返回顶楼 |
|
|
- myworkfirst
- 等级: 初级会员
- 文章: 305
- 积分: 67
|
liuweipeng 写道 谢谢三楼朋友,冒昧的问一句,你没有用serverlet,你采用什么了?
我是做的 c/s结构,不是 web开发. 所以直接写类,就行了. 没用到 servlet.
|
返回顶楼 |
|
|
- myworkfirst
- 等级: 初级会员
- 文章: 305
- 积分: 67
|
liuweipeng 写道 对于多用户同时访问的时候,暂不考虑性能,如何对于实时消息如何区分开,并且发送给不同的用户,也就是对于多线程方面如何处理,请指教。
消息,有消息包. 分为消息头,和消息体. 解开包头和包体,就可以区分各个用户了.对于消息结构,你们应该有定义吧! 对于你所说的发送给不同的用户,包头内应该有.得到消息后,可以放到 集合里,然后再分发出去.
不知道你们那的程序设计是否是这样. 这就看具体情况了.
我的java程序,对于vc++程序,是客户端,但对于用户,就是服务器.
|
返回顶楼 |
|
|
- dengtl
- 等级: 初级会员
- 文章: 58
- 积分: 20
- 来自: ...
|
同意楼上的。
另外,能否做一个线程池,对单个用户请求从线程池中分配一个线程与客户端进行交互,这样就不存在区分用户了。
|
返回顶楼 |
|
|
- dengtl
- 等级: 初级会员
- 文章: 58
- 积分: 20
- 来自: ...
|
对于长连接,我没有这方面的经验。直观感觉来看,长连接只所以存在是不希望频繁的进行TCP/IP握手处理,但如果长时间占用,势必也会对服务器端造成压力。我的建议是每当用户请求建立一个长连接时,则分配一个TimeoutSocket(可以由一般的Socket加上延时关闭功能装饰),当用户上一次传输请求时间超过某一时间后,则断开连接。这当然要客户端配合才行,客户端应该在传输之前检测该连接是否有效,无效则从新建立连接。
这样,或许能够解决长连接所产生的不足。
|
返回顶楼 |
|
|