Java程序打包成EXE的完美解决方案
日常工作之中, 主要是运用Java来开展开发工作, 在业余的时间里面,同样热衷于技术方面的研究, 并且喜欢利用Java所拥有的GUI库Swing去开发一些具备实用价值的小工具。但是, 利用Swing去开发软件, 相较于C/C而言, 存在着一个相当大的劣势, 那就是, 由Java打包而成的文件, 无法直接进行运行, 而是需要借助JRE也就是Java运行环境才能够运行, 倘若使用该软件的人并未安装JRE, 那么软件亦是无法运行的, 所以, 基本上也就没有人会去考虑运用Java来开发桌面应用了。当前Java程序打包分发的几种方案以上方案都有不同的优缺点技术方案具备优点、缺点, 其性能可提升, 能减少资源损耗, 安全性极高, 然而构建耗时, 调试艰难, 对反射Jlink二进制文件支持欠佳, 相比携带环境更为轻量级, 构建繁杂, 调试困难, 体积庞大, Exe4J可降低使用门槛, 拥有更好体验, 便于调试, 体积大, 需JRE运行, 不适合制作小工具批处理, 降低使用门槛, 配置灵活, 易于更新, 便于调试, 体积大, 需JRE运行, 不适合做小工具, 仅以Jar包分发, 文件小, 易更新, 在没有JRE的电脑上无法运行, 需命令启动, 使用门槛高, 体验不佳。在上述提及的方案里头, 以二进制文件形式进行分发的话, 会致使调试面临困难, 而要是采用jar包形式来分发, 又会对使用体验造成影响 , 此时呢, 我综合了上边所讲的几种方案 , 借助制作这么一个打包工具这个举措 , 该工具的用途是把Java程序打包成为二进制可执行文件, 其软件界面呈现如下:图片软件使用如下现有一个Swing程序如下pom.xml文件4.0.0 org.helloswing HelloSwing 1.0-SNAPSHOT 17 17 UTF-8 com.formdev flatlaf 3.5.1 org.apache.maven.plugins maven-assembly-plugin 3.7.1 jar-with-dependencies false org.hellloswing.HelloSwing make-assembly package single.java文件package org.hellloswing; import com.formdev.flatlaf.FlatDarkLaf; import com.formdev.flatlaf.FlatLightLaf; import javax.swing.*; import java.awt.*; public class HelloSwing { public static void main(String[] args) throws UnsupportedLookAndFeelException { // 初始化皮肤 FlatLightLaf.install(); UIManager.setLookAndFeel( new FlatDarkLaf()); // 初始化窗口 JFrame jFrame new JFrame(Hello Swing); // 设置大小 jFrame.setSize(500, 500); // 关闭窗口后退出 jFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); // 设置居中 jFrame.setLocationRelativeTo(null); // 设置元素 JPanel jPanel new JPanel(new BorderLayout()); jPanel.add(new JLabel(Hello Swing, JLabel.CENTER), BorderLayout.CENTER); jFrame.getContentPane().add(jPanel); // 显示窗口 jFrame.setVisible(true); } }把它弄成胖JAR之后, 导出精简 JRE, 接着借助打包工具来打包, 把那 JAR 文件跟 JRE 打包成 exe 文件, 随后就能通过双击去运行了。WWw.BlOg.GeVc.CoM.cN/Article/details/588205.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/243442.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/484834.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/481547.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/979334.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/635040.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/808276.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/729498.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/862044.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/933347.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/696010.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/286091.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/936301.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/473823.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/363568.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/038299.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/406929.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/237856.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/852824.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/772846.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/866156.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/322820.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/406987.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/135496.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/106714.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/832983.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/392571.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/464593.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/508643.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/238356.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/087114.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/049425.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/801424.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/277276.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/577365.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/058599.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/739237.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/858168.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/826542.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/872158.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/262310.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/803031.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/564192.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/337453.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/770039.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/873211.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/487456.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/329706.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/321167.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/754442.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/682282.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/771794.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/844595.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/598714.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/104965.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/120503.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/972081.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/169298.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/165737.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/116918.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/516818.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/826231.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/808970.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/794609.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/059065.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/859177.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/526959.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/871334.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/942053.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/819484.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/919848.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/403578.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/201879.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/815609.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/628891.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/584925.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/629255.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/407174.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/124066.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/342511.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/636288.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/472600.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/309584.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/795304.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/940767.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/914691.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/398799.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/171910.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/863986.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/447363.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/891253.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/949566.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/494189.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/455315.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/163228.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/012577.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/082747.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/992579.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/485792.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/918585.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/540816.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/847313.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/149783.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/623553.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/350396.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/862333.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/828012.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/737107.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/481559.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/133399.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/902998.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/368972.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/472732.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/419251.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/203319.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/418303.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/250007.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/461433.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/141211.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/379071.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/011667.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/232825.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/635663.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/148811.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/516416.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/466242.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/837300.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/889093.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/863222.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/891139.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/451401.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/217981.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/606946.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/691944.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/500892.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/742529.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/782542.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/729407.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/554405.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/578657.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/186563.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/214313.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/684943.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/988117.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/524953.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/918510.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/175888.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/813396.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/028793.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/997026.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/980571.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/320075.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/009809.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/692217.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/054999.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/187446.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/931980.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/445986.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/045246.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/265491.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/569350.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/469710.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/928868.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/186379.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/335043.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/833020.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/026095.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/499974.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/201716.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/913534.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/918405.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/786667.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/718072.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/704718.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/796500.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/860045.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/683538.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/977661.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/092028.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/894292.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/466190.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/773307.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/135340.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/807334.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/719291.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/146480.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/457387.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/953547.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/433592.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/830381.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/713902.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/515484.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/593903.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/372774.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/136811.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/374842.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/283686.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/397317.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/499215.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/705945.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/415638.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/071022.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/441551.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/814537.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/261997.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/169788.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/194545.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/390222.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/556963.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/091113.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/036562.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/925812.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/981169.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/182725.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/451398.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/364594.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/028103.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/059611.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/626533.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/831383.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/420316.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/743244.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/407200.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/417162.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/696690.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/766534.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/070879.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/274543.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/958817.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/049409.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/919348.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/370276.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/111131.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/292632.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/215318.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/590580.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/751988.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/786178.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/438613.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/193612.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/600562.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/096311.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/755726.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/081884.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/197890.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/536151.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/694682.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/392033.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/012445.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/723126.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/459986.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/849605.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/021169.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/387408.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/309447.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/079552.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/732181.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/786024.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/690093.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/840788.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/063337.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/044862.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/651826.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/049352.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/235556.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/224367.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/653360.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/926573.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/111894.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/538503.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/357753.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/966171.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/341781.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/577916.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/583517.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/308272.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/887558.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/942893.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/609678.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/896853.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/938911.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/177086.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/999819.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/269667.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/478876.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/033734.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/834869.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/751725.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/992464.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/438550.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/128189.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/435373.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/449175.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/720595.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/039380.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/034649.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/980069.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/996229.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/762700.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/055501.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/950136.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/115406.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/705765.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/965468.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/758883.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/943792.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/889031.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/773723.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/045891.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/351917.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/769744.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/133782.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/969476.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/701537.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/630652.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/174719.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/355035.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/296595.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/152103.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/489582.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/756847.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/838892.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/853171.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/751316.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/559179.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/274946.sHtMLWWw.BlOg.GeVc.CoM.cN/Article/details/619036.sHtML

相关新闻

水下视觉识别落地难|海底鱼类YOLO标注数据集分享|海洋生物目标检测训练素材

水下视觉识别落地难|海底鱼类YOLO标注数据集分享|海洋生物目标检测训练素材

水下视觉识别落地难|海底鱼类YOLO标注数据集分享|海洋生物目标检测训练素材 #海洋目标检测 #YOLO数据集 #水下鱼类识别 #计算机视觉实战 #深度学习训练素材开篇行业 2026年近海水下勘测、水下机器人巡检、海洋牧场智能化监测项目集中落地,沿海多地海洋科研实验室、水…

2026/7/24 5:34:45 阅读更多 →
Vue虚拟DOM与key属性:原理、优化与实践

Vue虚拟DOM与key属性:原理、优化与实践

1. 虚拟DOM与key的基础概念 在Vue的渲染机制中,虚拟DOM(Virtual DOM)是一个核心概念。简单来说,虚拟DOM就是一个轻量级的JavaScript对象,它是对真实DOM的抽象表示。当组件的状态发生变化时,Vue会先生成一个…

2026/7/24 5:48:36 阅读更多 →
AI多因子模型解析:通胀预期升温,黄金跌破4000美元关口的因果推理框架

AI多因子模型解析:通胀预期升温,黄金跌破4000美元关口的因果推理框架

摘要:本文通过AI多因子宏观分析模型,结合黄金价格走势、国际油价、美元指数、美债收益率及最新美经济数据,分析黄金跌破4000美元关口背后的驱动因素,并利用机器学习情景预测、因果推理模型和资金流分析框架,对黄金短期…

2026/7/24 7:31:22 阅读更多 →

最新新闻

ROS2 IMU数据可视化:从C++节点到Rviz2的完整实现

ROS2 IMU数据可视化:从C++节点到Rviz2的完整实现

1. 项目概述:从零到一,搞定ROS2 IMU数据可视化最近在折腾一个机器人项目,需要实时获取IMU(惯性测量单元)的数据,并在电脑上直观地看到它的姿态变化。这听起来像是机器人开发里的“Hello World”&#xff0c…

2026/7/25 1:33:08 阅读更多 →
IGBT模块寄生电感提取:阻抗等效模型与英特软件实践

IGBT模块寄生电感提取:阻抗等效模型与英特软件实践

在电力电子系统设计中,IGBT模块的寄生参数提取一直是工程师面临的技术难点。传统方法往往将寄生电感和寄生电容作为整体参数处理,导致在高频工作条件下难以准确评估模块的动态特性。本文将详细介绍基于阻抗等效模型的IGBT模块寄生电感提取方法,结合英特低频电磁分析软件的实…

2026/7/25 1:33:08 阅读更多 →
商业折扣与现金折扣

商业折扣与现金折扣

商业折扣与现金折扣 商业折扣(打折) 明着砍价为了多卖货,直接在标价上打个折例如,全场 8 折、买 100 减 20发票上会直接体现,会计做账时直接按打折后的实收金额入账,跟企业“会不会按时付款”没关系现金折扣…

2026/7/25 1:33:08 阅读更多 →
Android 对话框 - 倒计时选择对话框、列表对话框字体放大

Android 对话框 - 倒计时选择对话框、列表对话框字体放大

倒计时选择对话框 1、Dialog Layout dialog_countdown_selection <?xml version"1.0" encoding"utf-8"?> <LinearLayout xmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"500dp"android:l…

2026/7/25 1:33:08 阅读更多 →
C++构建高性能微信小程序登录后端:架构设计与实战解析

C++构建高性能微信小程序登录后端:架构设计与实战解析

1. 项目概述&#xff1a;为什么C会与微信小程序登录产生交集&#xff1f;刚看到这个标题&#xff0c;很多朋友可能会一愣&#xff1a;微信小程序登录不是前端和后台服务&#xff08;Java、Go、Node.js&#xff09;的事儿吗&#xff0c;怎么跟C扯上关系了&#xff1f;这恰恰是这…

2026/7/25 1:33:08 阅读更多 →
计算机毕业设计之交安公司汽车销售系统的设计与实现

计算机毕业设计之交安公司汽车销售系统的设计与实现

伴随着我国社会的发展&#xff0c;人民生活质量日益提高。于是对各种需求进行规范而严格是十分有必要的&#xff0c;所以许许多多的微信小程序应运而生。此时单靠人力应对这些事务就显得有些力不从心了。所以本论文将设计一套交安公司汽车销售系统&#xff0c;帮助交安公司进行…

2026/7/25 1:32:08 阅读更多 →

日新闻

突破文档下载限制:kill-doc让你看到的都能保存

突破文档下载限制:kill-doc让你看到的都能保存

突破文档下载限制&#xff1a;kill-doc让你看到的都能保存 【免费下载链接】kill-doc 看到经常有小伙伴们需要下载一些免费文档&#xff0c;但是相关网站浏览体验不好各种广告&#xff0c;各种登录验证&#xff0c;需要很多步骤才能下载文档&#xff0c;该脚本就是为了解决您的…

2026/7/25 0:00:35 阅读更多 →
C++ string类模拟实现:从深拷贝到内存管理的完整指南

C++ string类模拟实现:从深拷贝到内存管理的完整指南

1. 项目概述&#xff1a;为什么我们要“手撕”string类&#xff1f;在C的学习道路上&#xff0c;尤其是从C语言过渡到C的“初阶”阶段&#xff0c;string类绝对是一个绕不开的核心。标准库里的std::string用起来太方便了&#xff0c;、find、substr&#xff0c;几个操作符和函数…

2026/7/25 0:00:35 阅读更多 →
三角洲寻宝鼠工具:高效文件搜索与资源管理实战指南

三角洲寻宝鼠工具:高效文件搜索与资源管理实战指南

1. 先搞清楚“三角洲寻宝鼠”到底是什么工具从名称来看&#xff0c;“三角洲寻宝鼠”更像是一个资源查找或文件检索类工具&#xff0c;而不是游戏或娱乐软件。这类工具的核心价值在于帮助用户快速定位特定资源&#xff0c;比如文档、图片、压缩包或特定格式的文件。如果你经常需…

2026/7/25 0:00:35 阅读更多 →

周新闻

Go语言静态资源打包方案对比与实践指南

Go语言静态资源打包方案对比与实践指南

1. 项目背景与核心需求在Go语言开发中&#xff0c;我们经常需要处理静态资源文件的打包问题。无论是Web应用的模板文件、前端资源&#xff0c;还是配置文件、证书等&#xff0c;都需要随程序一起分发。传统做法是将这些文件与编译后的二进制文件放在同一目录下&#xff0c;但这…

2026/7/24 3:59:20 阅读更多 →
Go语言实现高性能LDAP认证服务的架构与实践

Go语言实现高性能LDAP认证服务的架构与实践

1. 项目背景与核心价值LDAP&#xff08;轻量级目录访问协议&#xff09;作为企业级身份认证的黄金标准&#xff0c;已经服务了超过80%的财富500强公司。我在金融科技领域实施统一认证体系时&#xff0c;发现传统Java方案存在启动慢、内存占用高等痛点。而Go语言凭借其协程并发模…

2026/7/24 1:23:39 阅读更多 →
【AI面试官实战指南】:用ChatGPT模拟10类高频技术岗面试,3天提升应答精准度92%

【AI面试官实战指南】:用ChatGPT模拟10类高频技术岗面试,3天提升应答精准度92%

更多请点击&#xff1a; https://intelliparadigm.com 第一章&#xff1a;AI面试官实战指南的核心价值与适用场景 AI面试官并非替代人类HR的“黑箱工具”&#xff0c;而是以可解释、可审计、可迭代的方式&#xff0c;赋能招聘全链路的关键基础设施。其核心价值在于将主观经验沉…

2026/7/24 18:52:18 阅读更多 →

月新闻