有没有 Java CSS 格式化工具?
我需要格式化(而不是压缩)CSS 代码,以便将不可读的 CSS 代码格式化为可读。我需要这个作为 Java 库。
I need to format (not compress) CSS code, so that unreadable CSS code is formatted to be readable. I need this as Java library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚尝试在Rhino中使用 http://jsbeautifier.org/ 中的美化器。
我从以下位置下载了JS:
https://github.com/einars/ js-beautify/blob/master/beautify.js
然后启动Rhino(必须在Rhino安装目录下):
java -jar js.jar -opt -1
加载
beautify.js
(假设您将其复制到Rhino安装文件夹,否则使用不同的文件路径):load("beautify.js")
然后美化
beautify .js
本身!js_beautify(readFile("beautify.js"))
这也可以嵌入到您的 Java 应用程序中。尝试一下这个答案。
I just tried using the beautifier from http://jsbeautifier.org/ in Rhino.
I downloaded the JS from:
https://github.com/einars/js-beautify/blob/master/beautify.js
Then started Rhino (must be in Rhino installation directory):
java -jar js.jar -opt -1
Load
beautify.js
(assuming you copied it to the Rhino installation folder, else use different file path):load("beautify.js")
And then beautify
beautify.js
itself!js_beautify(readFile("beautify.js"))
This can also be embedded into your Java app. Give this answer a try.