chore: initial commit from klp-oa @ 0.8.3, renamed to fad-l3

This commit is contained in:
2026-06-08 15:31:31 +08:00
commit 5cd31efef1
4292 changed files with 581410 additions and 0 deletions

38
scaner/.gitignore vendored Normal file
View File

@@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

103
scaner/pom.xml Normal file
View File

@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>jar</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.example.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<mainClass>org.example.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Maven依赖 -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.17.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.17.0</version>
</dependency>
<!-- MQTT dependency removed -->
<!-- <dependency>-->
<!-- <groupId>com.klp</groupId>-->
<!-- <artifactId>mv-code-reader-ctrl-wrapper</artifactId>-->
<!-- <version>1.0.0</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-server</artifactId>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-container-grizzly-server</artifactId>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-container-servlet</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,262 @@
//package org.example;
//
//import java.io.File;
//import java.io.FileOutputStream;
//import java.io.IOException;
//import java.io.OutputStream;
//import java.util.ArrayList;
//
//import org.glassfish.tyrus.server.Server;
//
//import MvCodeReaderCtrlWrapper.*;
//import MvCodeReaderCtrlWrapper.MvCodeReaderCtrlDefine.*;
//
//public class Back {
// static HttpRequestUtil http = null;
//
// // 保存所有读取到的设备列表
// private static ArrayList<MV_CODEREADER_DEVICE_INFO> allDevices = new ArrayList<>();
//
// // 保存正在监听的设备列表
// private static final ArrayList<MV_CODEREADER_DEVICE_INFO> activeDevices = new ArrayList<>();
// private static byte[] pdata;
//
// // 获取所有读取到的设备列表JSON推送给前端
// public static String getAllDevicesJson() {
// org.json.JSONObject obj = new org.json.JSONObject();
// obj.put("type", "allDevices");
// org.json.JSONArray arr = new org.json.JSONArray();
//
// for (MV_CODEREADER_DEVICE_INFO camInfo : allDevices) {
// org.json.JSONObject dev = new org.json.JSONObject();
// dev.put("id", camInfo.stGigEInfo.chSerialNumber); // 序列号
// dev.put("name", camInfo.stGigEInfo.chUserDefinedName != null ?
// camInfo.stGigEInfo.chUserDefinedName : camInfo.stGigEInfo.chModelName);
// dev.put("model", camInfo.stGigEInfo.chModelName); // 型号
// dev.put("manufacturer", camInfo.stGigEInfo.chManufacturerName); // 制造商
// dev.put("ip", getIpAddress(camInfo.stGigEInfo.nCurrentIp)); // IP地址
// dev.put("version", camInfo.stGigEInfo.chDeviceVersion); // 设备版本
// dev.put("isActive", isDeviceActive(camInfo)); // 是否正在监听
// arr.put(dev);
// }
//
// obj.put("devices", arr);
// obj.put("totalCount", allDevices.size()); // 设备总数
// obj.put("activeCount", activeDevices.size()); // 活跃设备数
// return obj.toString();
// }
//
// // 检查设备是否正在监听
// private static boolean isDeviceActive(MV_CODEREADER_DEVICE_INFO device) {
// for (MV_CODEREADER_DEVICE_INFO active : activeDevices) {
// if (active.stGigEInfo.chSerialNumber.equals(device.stGigEInfo.chSerialNumber)) {
// return true;
// }
// }
// return false;
// }
//
// // 将IP整数转换为字符串格式
// private static String getIpAddress(int ipInt) {
// return ((ipInt & 0xff000000) >> 24) + "." +
// ((ipInt & 0x00ff0000) >> 16) + "." +
// ((ipInt & 0x0000ff00) >> 8) + "." +
// (ipInt & 0x000000ff);
// }
//
// public static void saveDataToFile(byte[] dataToSave, int dataSize, String fileName) {
// OutputStream os = null;
//
// try {
// // 创建保存目录
// File tempFile = new File("saveImg");
// if (!tempFile.exists()) {
// tempFile.mkdirs();
// }
//
// os = new FileOutputStream("saveImg/" + fileName);
// os.write(dataToSave, 0, dataSize);
// System.out.println("图像保存成功: " + fileName);
// } catch (IOException e) {
// e.printStackTrace();
// } finally {
// // 关闭文件流
// try {
// if (os != null) {
// os.close();
// }
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
// }
//
// // 回调函数, 当扫码枪扫码后触发
// private static void printImgCBInfo(byte[] pdata, MV_CODEREADER_IMAGE_OUT_INFO_EX2 stOutInfo) {
// Main.pdata = pdata;
// if (null == stOutInfo) {
// System.out.println("stOutInfo is null");
// return;
// }
//
// System.out.print("/**CBpstOutInfo***************************************/\n");
//
// System.out.printf("获取一帧: nEventID[%d], nChannelID[%d], nWidth[%d], nHeight[%d], nFrameNum[%d], nTriggerIndex[%d], nFrameLen[%d], "
// + " nCodeNumber[%d] \r\n",
// stOutInfo.nEventID, stOutInfo.nChannelID, stOutInfo.nWidth, stOutInfo.nHeight, stOutInfo.nFrameNum,
// stOutInfo.nTriggerIndex, stOutInfo.nFrameLen, stOutInfo.pstCodeListEx.nCodeNum);
//
// System.out.print("解码状态: bIsGetCode[" + stOutInfo.bIsGetCode + "]\r\n");
//
// System.out.print("像素类型: MvCodeReaderGvspPixelType[" + stOutInfo.enPixelType + "]\r\n");
//
// // 打印解码信息
// for (int a = 0; a < stOutInfo.pstCodeListEx.nCodeNum; a++) {
// org.json.JSONObject obj = new org.json.JSONObject();
// obj.put("type", "scanMessage");
// // 解析码中的数据用下划线分割第一个为物料类型第二个为物料id
// String code = stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).chCode;
//// String[] parts = code.split("__");
//// if (parts.length >= 2) {
//// String itemType = parts[0];
//// String itemId = parts[1];
//// obj.put("itemType", itemType);
//// obj.put("itemId", itemId);
//// } else {
//// obj.put("rawCode", code);
//// obj.put("error", "格式不正确");
//// }
// // 直接将解析出的数据返回到页面上
//// WsServer.broadcast(code);
// // 发送http请求存储信息
// try {
// String s = HttpRequestUtil.postJson("http://140.143.206.120:8080/wms/stockIoDetail", code);
// System.out.println("返回值" + s);
// System.out.println("明细记录创建成功" + code);
// } catch (Exception e) {
// throw new RuntimeException(e);
// }
//
//
// System.out.printf("解码信息: TheCodeID[%d], CodeString[%s], nCodeLen[%d], nAngle[%d], nBarType[%d],"
// + "sAlgoCost[%d], nIDRScore[%d], n1DIsGetQuality[%d]\r\n",
// a, stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).chCode, stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).nLen,
// stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).nAngle, stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).nBarType,
// stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).sAlgoCost, stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).nIDRScore,
// stOutInfo.pstCodeListEx.stBcrInfoEx.get(a).n1DIsGetQuality);
// }
// }
//
// private static void PrintDeviceInfo(MV_CODEREADER_DEVICE_INFO stCamInfo) {
// if (stCamInfo.nTLayerType == MvCodeReaderCtrlDefine.MV_CODEREADER_GIGE_DEVICE) {
// System.out.print("IP地址: " + getIpAddress(stCamInfo.stGigEInfo.nCurrentIp) + "\r\n");
// System.out.printf("设备信息: 自定义名称:[%s], 序列号:[%s], 型号:[%s] \r\n\r\n",
// stCamInfo.stGigEInfo.chUserDefinedName,
// stCamInfo.stGigEInfo.chSerialNumber,
// stCamInfo.stGigEInfo.chModelName);
// }
// }
//
//
// public static void main(String[] args) throws InterruptedException {
// System.out.print(" ***************程序开始****************** \r\n");
//
//// String strVersion = MvCodeReaderCtrl.MV_CODEREADER_GetSDKVersion();
//// System.out.print("SDK版本: " + strVersion + "\r\n");
////
//// // 枚举所有设备
//// allDevices = MvCodeReaderCtrl.MV_CODEREADER_EnumDevices();
//// if (allDevices == null || allDevices.isEmpty()) {
//// System.out.print("未发现任何设备!\r\n");
//// } else {
//// System.out.print("发现" + allDevices.size() + "个设备:\r\n");
//// for (MV_CODEREADER_DEVICE_INFO device : allDevices) {
//// PrintDeviceInfo(device);
//// }
//// }
////
//// ArrayList<Handle> handleList = new ArrayList<>();
//// // 尝试打开并启动所有发现的设备
//// for (int i = 0; i < allDevices.size(); i++) {
//// MV_CODEREADER_DEVICE_INFO camInfo = allDevices.get(i);
//// System.out.print("处理设备 " + i + ": " + camInfo.stGigEInfo.chSerialNumber + "\r\n");
////
//// Handle handle = null;
//// try {
//// handle = MvCodeReaderCtrl.MV_CODEREADER_CreateHandle(camInfo);
//// } catch (ParameterException e) {
//// System.out.print("创建句柄失败: " + e.getMessage() + "\r\n");
//// continue;
//// }
////
//// if (handle == null) {
//// System.out.print("创建句柄失败 for device " + i + "!\r\n");
//// continue;
//// }
////
//// int nRet = MvCodeReaderCtrl.MV_CODEREADER_OpenDevice(handle);
//// if (nRet != 0) {
//// System.out.print("打开设备失败 for device " + i + "! 错误码[" + String.format("0x%x", nRet) + "]\r\n");
//// continue;
//// }
////
//// nRet = MvCodeReaderCtrl.MV_CODEREADER_RegisterImageCallBackEx2(handle, new ImageCallBack() {
//// @Override
//// public int OnImageCallBack(byte[] pdata, MV_CODEREADER_IMAGE_OUT_INFO_EX2 stOutInfo) {
//// printImgCBInfo(pdata, stOutInfo);
//// return 0;
//// }
//// });
////
//// if (nRet != 0) {
//// System.out.print("注册回调失败 for device " + i + "! 错误码[" + String.format("0x%x", nRet) + "]\r\n");
//// MvCodeReaderCtrl.MV_CODEREADER_CloseDevice(handle);
//// continue;
//// }
////
//// nRet = MvCodeReaderCtrl.MV_CODEREADER_StartGrabbing(handle);
//// if (nRet != 0) {
//// System.out.print("启动抓取失败 for device " + i + "! 错误码[" + String.format("0x%x", nRet) + "]\r\n");
//// MvCodeReaderCtrl.MV_CODEREADER_CloseDevice(handle);
//// continue;
//// }
////
//// // 如果所有步骤都成功,添加到活跃设备列表
//// handleList.add(handle);
//// activeDevices.add(camInfo);
//// System.out.print("设备 " + i + " 启动成功,开始监听!\r\n");
//// }
////
//// System.out.println("所有设备处理完毕。活跃设备数量: " + activeDevices.size() + "\r\n");
//
// // 输入自己的身份并保存每次请求时将其附加在json中createBy字段
//
//// 改为监听键盘输入,当监听到一个以##开头,!!结尾的字符串时,提取中间的部分
// http = new HttpRequestUtil();
// System.out.println("http请求工具创建完成");
// // 启动WebSocket服务器用于向前端推送设备列表和扫描结果
// Server server = new Server("localhost", 9000, "/", null, WsServer.class);
// try {
// server.start();
// System.out.println("WebSocket服务器已启动端口9000");
// System.out.println("按Enter键退出程序...");
// System.in.read(); // 阻塞主线程直到回车
// } catch (Exception e) {
// System.out.println("WebSocket服务器错误: " + e.getMessage());
// e.printStackTrace();
// } finally {
// // 停止所有设备
// System.out.println("停止所有设备...");
// for (Handle handle : handleList) {
// MvCodeReaderCtrl.MV_CODEREADER_StopGrabbing(handle);
// MvCodeReaderCtrl.MV_CODEREADER_CloseDevice(handle);
// }
// server.stop();
// System.out.println("程序已退出");
// }
// }
//
// public static byte[] getPdata() {
// return pdata;
// }
//}

View File

@@ -0,0 +1,68 @@
package org.example;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpRequestUtil {
/**
* 向指定URL发送POST请求发送JSON数据
* @param urlStr 目标接口地址
* @param jsonData 发送的JSON字符串
* @return 响应内容
* @throws Exception 网络异常
*/
public static String postJson(String urlStr, String jsonData) throws Exception {
URL url = new URL(urlStr);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
conn.setDoOutput(true);
conn.setDoInput(true);
try (OutputStream os = conn.getOutputStream()) {
os.write(jsonData.getBytes("UTF-8"));
}
int code = conn.getResponseCode();
if (code == 200) {
try (java.io.InputStream is = conn.getInputStream()) {
java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1) {
baos.write(buffer, 0, len);
}
return new String(baos.toByteArray(), "UTF-8");
}
} else {
throw new RuntimeException("HTTP请求失败状态码: " + code);
}
}
/**
* 向指定URL发送GET请求
* @param urlStr 目标接口地址
* @return 响应内容
* @throws Exception 网络异常
*/
public static String get(String urlStr) throws Exception {
URL url = new URL(urlStr);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Accept", "application/json");
conn.setDoInput(true);
int code = conn.getResponseCode();
if (code == 200) {
try (java.io.InputStream is = conn.getInputStream()) {
java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1) {
baos.write(buffer, 0, len);
}
return new String(baos.toByteArray(), "UTF-8");
}
} else {
throw new RuntimeException("HTTP GET请求失败状态码: " + code);
}
}
}

View File

@@ -0,0 +1,143 @@
package org.example;
import java.awt.AWTException;
import java.awt.Robot;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import org.json.JSONException;
import org.json.JSONObject;
public class Main {
private static String userIdentity;
// 存储扫码枪输入的字符
private static final BlockingQueue<Character> inputQueue = new ArrayBlockingQueue<>(4096);
// 扫码枪结束符回车的ASCII值
private static final int ENTER_ASCII = 13; // \r的ASCII值
private static final int NEWLINE_ASCII = 10; // \n的ASCII值
private static volatile boolean isExit = false;
public static void main(String[] args) throws InterruptedException {
System.out.print(" ***************程序开始****************** \r\n");
SCTool.lockEnglishInputMethod();
// 使用BufferedReader获取用户身份避免关闭System.in
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.print("请输入您的身份标识admin: ");
userIdentity = reader.readLine().trim();
while (userIdentity.isEmpty()) {
System.out.print("身份标识不能为空,请重新输入: ");
userIdentity = reader.readLine().trim();
}
System.out.println("已保存身份信息: " + userIdentity + "\n");
} catch (IOException e) {
System.out.println("读取用户身份时出错: " + e.getMessage());
System.exit(1);
}
// 启动输入监听和数据处理线程
startRawInputListener();
startScanDataProcessor();
System.out.println("提示1. 使用扫码枪扫描JSON数据2. 输入 'exit' 并回车退出程序\n");
// 主线程阻塞直到isExit被标记为true
while (!isExit) {
Thread.sleep(100);
}
// 程序退出清理
System.out.println("\n开始停止所有服务...");
isExit = true;
System.out.println("程序已正常退出");
}
/**
* 输入监听线程:记录所有接收的字符
*/
private static void startRawInputListener() {
Thread inputThread = new Thread(() -> {
try {
int byteData;
while (!isExit && (byteData = System.in.read()) != -1) {
char c = (char) byteData;
// 打印每个接收的字符含ASCII值用于调试
System.out.printf("[接收字符] 内容: '%c' ASCII: %d%n",
(c == '\r' ? '\\' + 'r' : c == '\n' ? '\\' + 'n' : c),
(int) c);
inputQueue.put(c);
}
} catch (IOException e) {
if (!isExit) {
System.out.println("输入监听异常: " + e.getMessage());
e.printStackTrace();
}
} catch (InterruptedException e) {
System.out.println("输入监听线程被中断");
Thread.currentThread().interrupt();
}
});
inputThread.setDaemon(true);
inputThread.start();
}
/**
* 数据处理线程:通过回车符判断扫码结束
*/
private static void startScanDataProcessor() {
Thread processorThread = new Thread(() -> {
StringBuilder inputBuffer = new StringBuilder();
try {
while (!isExit) {
// 取出队列中的字符
char c = inputQueue.take();
int ascii = (int) c;
// 判断是否为结束符(回车或换行)
if (ascii == ENTER_ASCII || ascii == NEWLINE_ASCII) {
// 缓冲区不为空时才处理(避免空输入)
if (inputBuffer.length() > 0) {
String scanInput = inputBuffer.toString().trim();
System.out.println("===== 扫码原始数据(完整) =====");
System.out.println(scanInput);
System.out.println("================================\n");
// 检查退出命令
if ("exit".equalsIgnoreCase(scanInput)) {
isExit = true;
System.out.println("\n已接收到退出指令程序将关闭...");
break;
}
// 校验JSON格式
if (SCTool.isValidJson(scanInput)) {
System.out.println("JSON格式校验通过开始处理...");
SCTool.sendDataToServer(scanInput, userIdentity);
} else {
System.out.println("错误输入不是有效JSON格式\n");
}
// 清空缓冲区,准备下一次扫码
inputBuffer.setLength(0);
}
} else {
// 非结束符则添加到缓冲区
inputBuffer.append(c);
}
}
} catch (InterruptedException e) {
System.out.println("数据处理线程被中断");
Thread.currentThread().interrupt();
}
});
processorThread.setDaemon(true);
processorThread.start();
}
}

View File

@@ -0,0 +1,102 @@
package org.example;
import org.json.JSONException;
import org.json.JSONObject;
import java.awt.*;
public class SCTool {
/**
* 判断字符串是否为JSON格式
*/
public static boolean isJson(String str) {
if (str == null || str.isEmpty()) return false;
str = str.trim();
return (str.startsWith("{") && str.endsWith("}")) || (str.startsWith("[") && str.endsWith("]"));
}
/**
* 校验字符串是否为有效JSON
*/
public static boolean isValidJson(String input) {
try {
new JSONObject(input);
return true;
} catch (JSONException e) {
System.out.println("JSON解析失败原因: " + e.getMessage());
return false;
}
}
/**
* 锁定英文输入法Windows系统专用
*/
public static void lockEnglishInputMethod() {
try {
String powerShellCmd = "powershell -Command \"$im = Get-WinUserLanguageList | Where-Object LanguageTag -eq 'en-US'; " +
"if ($im) { Set-WinUserLanguageList -LanguageList $im -Force; Write-Host 'Success' }\"";
Process process = Runtime.getRuntime().exec(powerShellCmd);
process.waitFor();
if (process.exitValue() == 0) {
System.out.println("英文输入法已锁定en-US");
} else {
System.out.println("PowerShell切换输入法失败尝试备选方案Ctrl+空格)");
sendKeyStroke(0x11, 0x20);
}
} catch (Exception e) {
System.out.println("设置英文输入法异常: " + e.getMessage());
e.printStackTrace();
}
}
/**
* 发送键盘组合键(用于输入法切换备选方案)
*/
public static void sendKeyStroke(int modifier, int key) {
try {
Robot robot = new Robot();
robot.keyPress(modifier);
robot.keyPress(key);
robot.keyRelease(key);
robot.keyRelease(modifier);
System.out.println("已尝试Ctrl+空格切换输入法");
} catch (AWTException e) {
System.out.println("发送键盘事件失败: " + e.getMessage());
}
}
/**
* 处理JSON数据并发送POST请求
*/
public static void sendDataToServer(String jsonInput, String userIdentity) {
try {
JSONObject json = new JSONObject(jsonInput);
json.put("createBy", userIdentity);
String finalJson = json.toString(2);
System.out.println("最终发送的JSON数据: ");
System.out.println(finalJson + "\n");
// 取消注释以下代码以启用HTTP请求
String response = HttpRequestUtil.postJson(
"http://140.143.206.120:8080/wms/stockIoDetail",
finalJson
);
if (response == null || response.isEmpty()) {
System.out.println("服务器无响应,请检查接口连接\n");
} else {
System.out.println("服务器返回结果: ");
String formattedResponse = SCTool.isJson(response) ? new JSONObject(response).toString(2) : response;
System.out.println(formattedResponse + "\n");
}
} catch (JSONException e) {
System.out.println("JSON处理异常: " + e.getMessage() + "\n");
} catch (Exception e) {
System.out.println("发送请求异常: " + e.getMessage() + "\n");
}
}
}

View File

@@ -0,0 +1,35 @@
package org.example;
import org.json.JSONObject;
import java.math.BigDecimal;
public class ScanDataUtil {
/**
* 解析扫码内容并构造请求体
* @param scanStr 扫码内容格式入库单id_仓库id_物料id_数量
* @param itemType 物品类型
* @param itemId 物品ID
* @param unit 单位
* @param remark 备注(可选)
* @param fromWarehouseId 源库位ID可选
* @param recordType 记录类型0/1
* @return JSON字符串
*/
public static String buildRequestJson(String scanStr, String itemType, String remark, Long fromWarehouseId, Integer recordType) {
String[] parts = scanStr.split("_");
if (parts.length != 4) throw new IllegalArgumentException("扫码内容格式不正确应为入库单id_仓库id_物料id_数量");
JSONObject obj = new JSONObject();
obj.put("stockIoId", Long.valueOf(parts[0]));
obj.put("warehouseId", Long.valueOf(parts[1]));
obj.put("fromWarehouseId", Long.valueOf(parts[1]));
obj.put("itemId", Long.valueOf(parts[2]));
obj.put("quantity", new BigDecimal(parts[3]));
obj.put("itemType", itemType);
obj.put("unit", 'g'); // 单位为null
obj.put("batchNo", 100); // 批次号为null
obj.put("remark", remark);
obj.put("fromWarehouseId", fromWarehouseId);
obj.put("recordType", recordType);
return obj.toString();
}
}

View File

@@ -0,0 +1,59 @@
package org.example;
import javax.websocket.OnClose;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;
@ServerEndpoint("/ws")
public class WsServer {
private static final Set<Session> sessions = new CopyOnWriteArraySet<>();
@OnOpen
public void onOpen(Session session) {
sessions.add(session);
System.out.println("WebSocket连接已建立: " + session.getId());
// 推送所有扫码枪列表给前端(使用修改后的方法名)
// String deviceListJson = Main.getAllDevicesJson();
// try {
// System.out.println("发送设备列表到前端: " + deviceListJson);
// session.getBasicRemote().sendText(deviceListJson);
// } catch (IOException e) {
// e.printStackTrace();
// }
}
@OnMessage
public void onMessage(String message, Session session) throws IOException {
System.out.println("收到消息: " + message);
// 可以根据前端需求,在这里处理命令(比如刷新设备列表)
if ("refreshDevices".equals(message)) {
// String deviceListJson = Main.getAllDevicesJson();
// session.getBasicRemote().sendText(deviceListJson);
} else {
session.getBasicRemote().sendText("服务器已收到: " + message);
}
}
@OnClose
public void onClose(Session session) {
sessions.remove(session);
System.out.println("WebSocket连接已关闭: " + session.getId());
}
public static void broadcast(String message) {
for (Session session : sessions) {
if (session.isOpen()) {
try {
session.getBasicRemote().sendText(message);
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}

View File

@@ -0,0 +1,80 @@
<template>
<el-row>
<el-col :span="6">
<ul>
<li v-for="item in deviceList" :key="item.id">
<span>{{ item.name }}</span>
<span>{{ item.status }}</span>
<span>{{ item.type }}</span>
<el-switch v-model="item.on" @change="handleDeviceChange(item)" />
</li>
</ul>
</el-col>
<el-col :span="18">
<KLPTable :data="messageList" style="width: 100%">
<el-table-column prop="time" label="时间" width="180" />
<el-table-column prop="message" label="消息" width="180" />
<el-table-column prop="device" label="设备" width="180" />
<el-table-column prop="type" label="类型" width="180" />
<el-table-column prop="recordType" label="记录类型" width="180" />
</KLPTable>
</el-col>
</el-row>
</template>
<script>
export default {
data() {
return {
deviceList: [],
messageList: [],
socket: null,
};
},
mounted() {
this.initSocket();
},
methods: {
initSocket() {
this.socket = new WebSocket("ws://localhost:8080");
this.socket.onopen = () => {
console.log("Socket 连接已建立");
};
this.socket.onmessage = (event) => {
const data = JSON.parse(event.data);
if (data.type === "deviceList") {
this.deviceList = data.devices;
} else if (data.type === "scanMessage") {
this.messageList.push(data.message);
}
};
this.socket.onclose = () => {
console.log("Socket 连接已关闭");
};
},
handleDeviceChange(item) {
this.socket.send(
JSON.stringify({
type: "toggleDevice",
deviceId: item.id,
status: item.on,
})
);
},
},
};
</script>
<style>
ul {
list-style: none;
padding: 0;
}
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
border-bottom: 1px solid #eee;
}
</style>