北斗定位
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

89 linhas
2.6KB

  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) {
  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. int rc = 0;
  51. while ((rc = is.read(buff, 0, 100)) > 0) {
  52. swapStream.write(buff, 0, rc);
  53. }
  54. byte[] in2b = swapStream.toByteArray();
  55. //4.关闭资源
  56. swapStream.close();
  57. is.close();
  58. pw.close();
  59. os.close();
  60. //log.debug(ackResult);
  61. log.debug("接收服务器的信息:"+HexConvert.BinaryToHexString(in2b));
  62. //return HexConvert.BinaryToHexString(in2b);
  63. return in2b;
  64. } catch (IOException e) {
  65. log.error("Socket sendCmd Error:" + e.getMessage());
  66. return null;
  67. }
  68. }
  69. public void closeConnection() {
  70. try {
  71. socket.close();
  72. //socket.shutdownOutput();
  73. } catch (IOException e) {
  74. log.error("Socket getOutputStream Error:" + e.getMessage());
  75. }
  76. }
  77. }