background picture of the home page

Hi,Friend

技术,游戏,生活

java 关闭windows输入法

这段Java代码使用JNA库来控制Windows输入法。通过调用操作系统API函数,该代码实现了打开和关闭输入法的功能。代码包含了获取前台窗口句柄、创建和释放输入法上下文等步骤,以管理输入法的启用和禁用状态。

thumbnail of the cover of the post

项目升级java17遇到的问题与解决方案

本文介绍了项目升级Java 17、Spring Boot 3.x以及Spring Cloud 2022.0.0.0 过程中遇到的问题和解决方案。主要涉及代码修改,例如使用正则表达式批量替换`javax`包为`jakarta`包,以及`io.swagger`包的升级。此外,文章详细说明了解决`No spring.config.import property has been defined`、`无法解析符号'Session'`等问题的依赖添加,并提供相应的Maven依赖配置示例。最终,文章总结了在升级过程中遇到的各种异常和对应的解决方案,以帮助其他开发者顺利完成升级工作。

thumbnail of the cover of the post

windows远程桌面无法复制文件

Windows远程桌面无法复制文件的问题,可以通过结束rdpclip.exe进程或重新运行rdpclip.exe来解决。若问题依然存在,可尝试关闭并重新打开远程桌面连接。

thumbnail of the cover of the post

@Scheduled定时不执行

Spring Boot @Scheduled 定时任务不执行可能有三个原因:1. 启动类未添加 @EnableScheduling 注解;2. 定时任务类未被 Spring 扫描到,需要添加 @Component 或 @Service 注解;3. 定时任务位于 Controller 类中,应将其移至 Service 层或单独的组件类中。解决方法分别为添加 @EnableScheduling 注解、为定时任务类添加 @Component 或 @Service 注解,以及将定时任务移至 Service 层或独立的 Service 类中。

thumbnail of the cover of the post

geos编译安装

本文介绍了在Linux环境下GEOS库的编译安装步骤。文章指出需要较新的CMake版本,并提供了解压、配置、编译和安装的详细命令,包括下载GEOS源代码、安装依赖(bzip2)和指定安装目录(可选)等步骤。最后验证安装结果,确保GEOS库版本正确。

thumbnail of the cover of the post

cmake 编译安装

cmake 编译安装 下载 其他版本下载地址: https://cmake.org/files/ wget https://cmake.org/files/v3.30/cmake-3.30.0.tar.gz 卸载旧版本 yum -y remove cmake 解压 tar -zxvf cmake

thumbnail of the cover of the post

由于StackOverflower错误,无法完成对web应用程序[]的批注的扫描

由于StackOverflower错误导致无法扫描Web应用程序,可能的根本原因是Xss设置过低或非法循环继承依赖。问题原因在于Maven打包的war包格式异常或Tomcat无法解析。解决方案包括:1. 执行Maven clean命令后重新打包war包;2. 使用解压缩工具解压war包,删除原war包,然后启动Tomcat。

thumbnail of the cover of the post

int转byte数组 - java

java int与byte数组互相转换方式 int 转 byte[] 低字节在前(低字节序) public static byte[] toLH(int n) { byte[] b = new byte[4]; b[

thumbnail of the cover of the post

更新make到最新版本4.3

本文介绍了在CentOS 7 x86_64系统上将make更新到最新版本4.3的步骤。首先,下载make-4.3.tar.gz压缩包。然后,解压并配置,指定安装目录为/usr。接着,执行make、make check和make install命令进行编译安装。最后,使用make -v命令验证安装结果,确认安装成功。

thumbnail of the cover of the post