Java程序打包成EXE的完美解决方案

发布时间:2026/7/18 1:09:18
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