0

0

win7下,Ant 配合yuicompressor对js和css进行合并、压缩、拷贝处理_html/css_WEB-ITnose

php中文网

php中文网

发布时间:2016-06-24 11:46:04

|

1434人浏览过

|

来源于php中文网

原创

本文基于windows7系统,mac上或许更简单些。本文参阅了无墨来点睛的文章,再此说明。

花了点时间,总算是试验成功,demo地址:http://pan.baidu.com/s/1c0dGm1i

ant可以去官网下载,地址是:http://ant.apache.org/ ,yuicompressor也可以去官网下一个https://github.com/yui/yuicompressor

demo的使用的ant版本是apache-ant-1.8.2,yuicompressor版本是yuicompressor-2.4.6。

另外由于ant是需要java运行环境的(一开始没看ant的说明,为此浪费了些时间),1.8的版本至少需要1.4的java jdk,可以从这里查阅:http://ant.apache.org/faq.html

立即学习前端免费学习笔记(深入)”;


java环境可以到官网下载,地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html,请先安装java环境,然后配置java的环境变量,

配置好后可在cmd-》dos下输入java,查阅是否安装成功。然后配置ant的环境变量,配置好后,同样测试是否安装成功,cmd->dos->输入ant,出现类似下面的内容表示

安装成功:


到此环境才配置成功。下面看demo结构


我这是在vs里面建的小工程,仅仅是为了编写build的xml文件而已,再次说明,仅仅为编写xml,你完全可以自己手动在文件夹中做的。

其中核心的是build.xml文件,结构如下:

一览妙笔
一览妙笔

自媒体、编剧、营销人员写作工具

下载

<?xml version="1.0" encoding="utf-8"?><project default="compress" basedir="F:\js\cc\deploymentTes\web" name="core">  <!-- 项目的 web 路径 -->  <property name="path" value="F:\js\cc\deploymentTes\web" />  <!-- 部署的输出路径 -->  <property name="targetDir" value="F:\js\cc\deploymentTes\build_output\asset" />  <!-- 源文件路径(src) -->  <property name="code.src" value="src" />  <!-- !!! YUI Compressor 路径 !!! -->  <property name="yuicompressor" value="F:\js\cc\deploymentTes\build\yuicompressor-2.4.6\build\yuicompressor-2.4.6.jar" />  <!-- =================================           target: concat 拼接(合并)文件                 ================================= -->  <target name="concat" depends="" description="concat code">    <echo message="Concat Code Files Begin!!!" />    <!-- JS -->    <concat destfile="${targetDir}/js/all.js" encoding="utf-8" fixlastline="on">      <fileset dir="${code.src}/js" includes="jquery-1.10.2.js" />      <fileset dir="${code.src}/js" includes="jquery-ui.js" />    </concat>    <!-- CSS -->    <concat destfile="${targetDir}/css/all.css" encoding="utf-8">      <fileset dir="${code.src}/css" includes="jquery-ui.css" />      <fileset dir="${code.src}/css" includes="jquery-ui.theme.css" />    </concat>    <echo message="Concat Code Files Finished!!!" />  </target>  <!-- =================================           target: copy 拷贝文件          ================================= -->  <target name="copy_asset" depends="concat" description="copy the asset file">    <echo message="Copy Asset Begin" />    <!-- main.html -->    <copy todir="${targetDir}/" overwrite="true">      <fileset dir="${path}/" includes="*.html"/>    </copy>    <!-- img *.png -->    <copy todir="${targetDir}/img" overwrite="true">      <fileset dir="${path}/asset/img" includes="*.png" />    </copy>    <echo message="Copy Asset Finished" />  </target>  <!-- =================================           target: compress 压缩 js && css           ================================= -->  <target name="compress" depends="copy_asset" description="compress code">    <echo message="Compress Code Begin" />    <apply executable="java" parallel="false" failonerror="true" dest="${targetDir}/js">      <fileset dir="${targetDir}/js" includes="*.js"/>      <arg line="-jar"/>      <arg path="${yuicompressor}" />      <arg line="--charset utf-8" />      <arg line="-o" />      <targetfile/>      <mapper type="glob" from="*.js" to="*.min.js" />    </apply>    <apply executable="java" parallel="false" failonerror="true" dest="${targetDir}/css">      <fileset dir="${targetDir}/css" includes="*.css"/>      <arg line="-jar"/>      <arg path="${yuicompressor}" />      <arg line="--charset utf-8" />      <arg line="-o" />      <targetfile/>      <mapper type="glob" from="*.css" to="*.min.css" />    </apply>    <echo message="Compress Code Finished" />    <echo message="Clean Begin" />    <!--<delete verbose="false" failonerror="true">      <fileset dir="${path}" includes="${targetDir}/*-o.js" />    </delete>-->    <echo message="Clean Finished" />  </target></project>

build.bat的批处理文件是为了调用ant的,它的内容是:

./apache-ant-1.8.2/bin/ant -f ./build.xml

是要运行bat文件即可,至于ant和yuicompressor xml语法解析说明,可以看文档,非常详细,而且你下载的demo里面有详细使用说明:

下面摘录的是yuicompressor的readme:

==============================================================================YUI Compressor==============================================================================NAME  YUI Compressor - The Yahoo! JavaScript and CSS CompressorSYNOPSIS  Usage: java -jar yuicompressor-x.y.z.jar [options] [input file]  Global Options    -h, --help                Displays this information    --type <js|css>           Specifies the type of the input file    --charset <charset>       Read the input file using <charset>    --line-break <column>     Insert a line break after the specified column number    -v, --verbose             Display informational messages and warnings    -o <file>                 Place the output into <file> or a file pattern.                              Defaults to stdout.  JavaScript Options    --nomunge                 Minify only, do not obfuscate    --preserve-semi           Preserve all semicolons    --disable-optimizations   Disable all micro optimizationsDESCRIPTION  The YUI Compressor is a JavaScript compressor which, in addition to removing  comments and white-spaces, obfuscates local variables using the smallest  possible variable name. This obfuscation is safe, even when using constructs  such as 'eval' or 'with' (although the compression is not optimal is those  cases) Compared to jsmin, the average savings is around 20%.  The YUI Compressor is also able to safely compress CSS files. The decision  on which compressor is being used is made on the file extension (js or css)GLOBAL OPTIONS  -h, --help      Prints help on how to use the YUI Compressor  --line-break      Some source control tools don't like files containing lines longer than,      say 8000 characters. The linebreak option is used in that case to split      long lines after a specific column. It can also be used to make the code      more readable, easier to debug (especially with the MS Script Debugger)      Specify 0 to get a line break after each semi-colon in JavaScript, and      after each rule in CSS.  --type js|css      The type of compressor (JavaScript or CSS) is chosen based on the      extension of the input file name (.js or .css) This option is required      if no input file has been specified. Otherwise, this option is only      required if the input file extension is neither 'js' nor 'css'.  --charset character-set      If a supported character set is specified, the YUI Compressor will use it      to read the input file. Otherwise, it will assume that the platform's      default character set is being used. The output file is encoded using      the same character set.  -o outfile      Place output in file outfile. If not specified, the YUI Compressor will      default to the standard output, which you can redirect to a file.      Supports a filter syntax for expressing the output pattern when there are      multiple input files.  ex:          java -jar yuicompressor.jar -o '.css$:-min.css' *.css      ... will minify all .css files and save them as -min.css  -v, --verbose      Display informational messages and warnings.JAVASCRIPT ONLY OPTIONS  --nomunge      Minify only. Do not obfuscate local symbols.  --preserve-semi      Preserve unnecessary semicolons (such as right before a '}') This option      is useful when compressed code has to be run through JSLint (which is the      case of YUI for example)  --disable-optimizations      Disable all the built-in micro optimizations.NOTES  + If no input file is specified, it defaults to stdin.  + Supports wildcards for specifying multiple input files.  + The YUI Compressor requires Java version >= 1.4.  + It is possible to prevent a local variable, nested function or function    argument from being obfuscated by using "hints". A hint is a string that    is located at the very beginning of a function body like so:    function fn (arg1, arg2, arg3) {        "arg2:nomunge, localVar:nomunge, nestedFn:nomunge";        ...        var localVar;        ...        function nestedFn () {            ....        }        ...    }    The hint itself disappears from the compressed file.  + C-style comments starting with /*! are preserved. This is useful with    comments containing copyright/license information. For example:    /*!     * TERMS OF USE - EASING EQUATIONS     * Open source under the BSD License.     * Copyright 2001 Robert Penner All rights reserved.     */    becomes:    /*     * TERMS OF USE - EASING EQUATIONS     * Open source under the BSD License.     * Copyright 2001 Robert Penner All rights reserved.     */MODIFIED RHINO FILES  YUI Compressor uses a modified version of the Rhino library  (http://www.mozilla.org/rhino/) The changes were made to support  JScript conditional comments, preserved comments, unescaped slash  characters in regular expressions, and to allow for the optimization  of escaped quotes in string literals.COPYRIGHT AND LICENSE  Copyright (c) 2011 Yahoo! Inc.  All rights reserved.  The copyrights embodied in the content of this file are licensed  by Yahoo! Inc. under the BSD (revised) open source license.

ps,在网上也找了个在线的,地址是:http://ganquan.info/yui/?hl=zh-CN

另附相关文章供各位道友学习:

     使用ANT和YUI压缩js

    ant和yuicompressor 压缩css、js方案

相关文章

HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
pixiv网页版官网登录与阅读指南_pixiv官网直达入口与在线访问方法
pixiv网页版官网登录与阅读指南_pixiv官网直达入口与在线访问方法

本专题系统整理pixiv网页版官网入口及登录访问方式,涵盖官网登录页面直达路径、在线阅读入口及快速进入方法说明,帮助用户高效找到pixiv官方网站,实现便捷、安全的网页端浏览与账号登录体验。

463

2026.02.13

微博网页版主页入口与登录指南_官方网页端快速访问方法
微博网页版主页入口与登录指南_官方网页端快速访问方法

本专题系统整理微博网页版官方入口及网页端登录方式,涵盖首页直达地址、账号登录流程与常见访问问题说明,帮助用户快速找到微博官网主页,实现便捷、安全的网页端登录与内容浏览体验。

135

2026.02.13

Flutter跨平台开发与状态管理实战
Flutter跨平台开发与状态管理实战

本专题围绕Flutter框架展开,系统讲解跨平台UI构建原理与状态管理方案。内容涵盖Widget生命周期、路由管理、Provider与Bloc状态管理模式、网络请求封装及性能优化技巧。通过实战项目演示,帮助开发者构建流畅、可维护的跨平台移动应用。

64

2026.02.13

TypeScript工程化开发与Vite构建优化实践
TypeScript工程化开发与Vite构建优化实践

本专题面向前端开发者,深入讲解 TypeScript 类型系统与大型项目结构设计方法,并结合 Vite 构建工具优化前端工程化流程。内容包括模块化设计、类型声明管理、代码分割、热更新原理以及构建性能调优。通过完整项目示例,帮助开发者提升代码可维护性与开发效率。

20

2026.02.13

Redis高可用架构与分布式缓存实战
Redis高可用架构与分布式缓存实战

本专题围绕 Redis 在高并发系统中的应用展开,系统讲解主从复制、哨兵机制、Cluster 集群模式及数据分片原理。内容涵盖缓存穿透与雪崩解决方案、分布式锁实现、热点数据优化及持久化策略。通过真实业务场景演示,帮助开发者构建高可用、可扩展的分布式缓存系统。

26

2026.02.13

c语言 数据类型
c语言 数据类型

本专题整合了c语言数据类型相关内容,阅读专题下面的文章了解更多详细内容。

29

2026.02.12

雨课堂网页版登录入口与使用指南_官方在线教学平台访问方法
雨课堂网页版登录入口与使用指南_官方在线教学平台访问方法

本专题系统整理雨课堂网页版官方入口及在线登录方式,涵盖账号登录流程、官方直连入口及平台访问方法说明,帮助师生用户快速进入雨课堂在线教学平台,实现便捷、高效的课程学习与教学管理体验。

14

2026.02.12

豆包AI网页版入口与智能创作指南_官方在线写作与图片生成使用方法
豆包AI网页版入口与智能创作指南_官方在线写作与图片生成使用方法

本专题汇总豆包AI官方网页版入口及在线使用方式,涵盖智能写作工具、图片生成体验入口和官网登录方法,帮助用户快速直达豆包AI平台,高效完成文本创作与AI生图任务,实现便捷智能创作体验。

524

2026.02.12

PostgreSQL性能优化与索引调优实战
PostgreSQL性能优化与索引调优实战

本专题面向后端开发与数据库工程师,深入讲解 PostgreSQL 查询优化原理与索引机制。内容包括执行计划分析、常见索引类型对比、慢查询优化策略、事务隔离级别以及高并发场景下的性能调优技巧。通过实战案例解析,帮助开发者提升数据库响应速度与系统稳定性。

53

2026.02.12

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号