From 9fd40b787bdd4e0caaed213d1931d9c7fb8f846c Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 30 十二月 2020 09:46:33 +0800 Subject: [PATCH] ## --- src/main/java/com/zy/core/thread/BarcodeThread.java | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zy/core/thread/BarcodeThread.java b/src/main/java/com/zy/core/thread/BarcodeThread.java index cd3848b..e6b8669 100644 --- a/src/main/java/com/zy/core/thread/BarcodeThread.java +++ b/src/main/java/com/zy/core/thread/BarcodeThread.java @@ -12,6 +12,7 @@ import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketAddress; +import java.net.SocketTimeoutException; /** * 鏉$爜鎵弿浠嚎绋� @@ -37,14 +38,15 @@ connect(); while (true) { try { - write("T".getBytes(), "T".length()); - byte[] read = read(11, 5); +// write("T".getBytes(), "T".length()); + byte[] read = read(11, 200); if (null != read) { barcode = new String(read); } Thread.sleep(100); + } catch (SocketTimeoutException ignore) { } catch (Exception e) { - e.printStackTrace(); +// e.printStackTrace(); } } } @@ -98,7 +100,7 @@ if (socket == null) { return null; } - socket.setSoTimeout(timeOut * 1000); + socket.setSoTimeout(timeOut); byte[] bytes = new byte[bufferSize]; int len = dataInputStream.read(bytes); byte[] tempBytes = null; -- Gitblit v1.9.1