北斗定位
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 line
3.2KB

  1. package com.telpo.dipperposition.common;
  2. import lombok.extern.slf4j.Slf4j;
  3. import java.io.*;
  4. import java.net.Socket;
  5. import java.nio.charset.StandardCharsets;
  6. /**
  7. * @program: dipperposition
  8. * @description: socket连接单元
  9. * @author: king
  10. * @create: 2021-01-14 13:52
  11. **/
  12. @Slf4j
  13. public class SocketClient {
  14. //定义一个Socket对象
  15. Socket socket = null;
  16. public SocketClient(String host, int port, int timeout) {
  17. try {
  18. //需要服务器的IP地址和端口号,才能获得正确的Socket对象
  19. socket = new Socket(host, port);
  20. socket.setSoTimeout(timeout);
  21. } catch (IOException e) {
  22. log.error("Socket Connect Error:" + e.getMessage());
  23. }
  24. }
  25. public String getOutput() {
  26. try {
  27. OutputStream os = socket.getOutputStream();
  28. return os.toString();
  29. } catch (IOException e) {
  30. log.error("Socket getOutputStream Error:" + e.getMessage());
  31. return null;
  32. }
  33. }
  34. public byte[] sendCmd(String astCmd, String ackAckCheckRef) {
  35. try {
  36. OutputStream os=socket.getOutputStream();
  37. PrintWriter pw=new PrintWriter(os);
  38. // TODO 发生命令
  39. //String info="用户名:Tom,用户密码:123456";
  40. pw.write(astCmd);
  41. pw.flush();
  42. socket.shutdownOutput();
  43. //接收服务器的相应
  44. String reply=null;
  45. //输入流
  46. InputStream is=socket.getInputStream();
  47. //BufferedReader br=new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8));
  48. ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
  49. byte[] buff = new byte[100];
  50. //StringBuffer ackResultBuf= new StringBuffer();
  51. //String ackHexOut = HexConvert.convertStringToHex(ackAckCheckRef);
  52. // reply=br.readLine();
  53. // while(reply!=null){
  54. // //log.debug("接收服务器的信息:"+reply);
  55. // //if (ackHexOut.equals(reply)) {
  56. // ackResultBuf.append(reply);
  57. // reply=br.readLine();
  58. // // break;
  59. // //}
  60. // }
  61. int rc = 0;
  62. while ((rc = is.read(buff, 0, 100)) > 0) {
  63. swapStream.write(buff, 0, rc);
  64. }
  65. byte[] in2b = swapStream.toByteArray();
  66. //String ackResult = HexConvert.convertHexToString(ackResultBuf.toString());
  67. //4.关闭资源
  68. swapStream.close();
  69. is.close();
  70. pw.close();
  71. os.close();
  72. //log.debug(ackResult);
  73. log.debug("接收服务器的信息:"+HexConvert.BinaryToHexString(in2b));
  74. //return HexConvert.BinaryToHexString(in2b);
  75. return in2b;
  76. } catch (IOException e) {
  77. log.error("Socket sendCmd Error:" + e.getMessage());
  78. return null;
  79. }
  80. }
  81. public void closeConnection() {
  82. try {
  83. socket.close();
  84. //socket.shutdownOutput();
  85. } catch (IOException e) {
  86. log.error("Socket getOutputStream Error:" + e.getMessage());
  87. }
  88. }
  89. }