Tagged Questions
0
votes
3answers
45 views
XML/HTML Deminify Program
I am writing a Java program which will deminify any HTML/XML file from a single line to multiple lines (structured way). The method is simple. I am using a regex to split the single string into ...
0
votes
0answers
72 views
YUI Compressor 2.4.7 - No class def error ErrorReporter
I have a problem with the YUI Compressor for js: I've added version 2.4.7 to my build path in Eclipse ( tried with rhino jar and also without) - no effect whatsoever. I dont get compile errors, I can ...
0
votes
1answer
245 views
Closure Compiler options
I want to use Closure Compiler to minify/compress JS code.
the problem is that it doesn't minify as well as I expect it to. consider the code below. when I pass the string
var func = function ( ...
0
votes
0answers
203 views
Minify and obfuscate JavaScript code in Java
Possible Duplicate:
What is the best free JavaScript obfuscator that is available as a Java library?
I use YUI Compressor for years to minify and obfuscate JS files. But now I need to ...
0
votes
3answers
165 views
how Android source code minify and obfuscate?
I had done my apps, any idea to minify the Android and Java code?
can it save the apk file size and improve performance? compare to unminify source code.
2
votes
1answer
159 views
java source code minifier?
Is there a tool out there for minifying java source code?
I am aware there is not much practical need for such a tool, but I am interested to reduce some students' code to 'bare bones' to show how ...
3
votes
3answers
306 views
Printing a string in Java using less characters than the contents of the string
This is for an extra credit assignment in school that will be coming up next semester. I have to print a paragraph to the screen but the amount of characters is the code must be less than the amount ...
1
vote
1answer
2k views
How to compress JS and css in java at build time using maven-minify-plugin with YUI compressor
I want to use maven-minify plugin with YUI compressor for compressing JS and css at build time.
My JS and CSS are kept in different folders. For instance. 'X' JS files are present in one folder and ...
0
votes
1answer
218 views
Granule - JavaScript/CSS minification SIMPLE/ADVANCED optimization is not working
I setup Granule optimization solution on fly (not build process) for my web application by following the installation steps at the bottom of this page: https://github.com/JonathanWalsh/Granule
Granule ...
2
votes
1answer
95 views
Java, how to start several jars that use 1 VM?
I want to run google closure compiler on many javascript files from python.
I use this:
subprocess.Popen('/usr/bin/java -jar /var/www/compiler.jar --js "%s" --js_output_file "%s"' % (fullname, ...
3
votes
1answer
2k views
Unobtrusive way to combine and compress javascript/css for java/spring/maven applications?
I'd like to add some kind of library, or maven plugin, or 'something' to combine and compress my javascript and css source files.
However, I think this is pretty difficult to do unobtrusively with ...
2
votes
1answer
886 views
LessCSS/JS compiler and compressor for Java project
I am looking for a Java tool to add compilation and compression of static files (css (less),js) into my build process.
The only tool that I found is wr04j. However, since I don't use Maven I need to ...
3
votes
2answers
121 views
YUICompressor unescapes backslashes
In our application, we invoke YUICompressor to minify our javascript. Under some conditions we are having trouble identifying, it incorrectly unescapes backslash-escaped characters, so for example
...
1
vote
1answer
432 views
Minify JavaScript code in a JSPX page (in a Spring MVC WebApp)
So, I have a jspx page which has JS code in it, and part of the code is generated dynamically, so I can't minify and paste the minified code.
E.g. Let's imagine I draw a chart with Google Chart API, ...
7
votes
2answers
2k views
How to minify different javascript files at runtime using Java
I'm trying to build (or find an existing one I can use) a web filter that will compress a JavaScript file at runtime. I've tried building one based on YUICompressor, but I'm getting weird errors out ...
4
votes
1answer
347 views
How do I turn off minified JavaScript under Richfaces?
For the purposes of debugging I need to make Richfaces use non-minified JavaScript. Is there a simple way to accomplish this?
