This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setlocal | |
| set path=%path%;C:\apps\7-Zip | |
| FOR /R . %%I IN (*.gz) DO 7z x "%%I" -aou -o"%%I.dir" | |
| FOR /R . %%I IN (*.tar) DO 7z x "%%I" -aou -o"%%I.dir" | |
| FOR /R . %%I IN (*.zip) DO 7z x "%%I" -aou -o"%%I.dir" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| submitValidate : function() { | |
| var theForm = dom.byId("patternForm"); | |
| on(theForm, "submit", function(ev) { | |
| console.log("form invoked"); | |
| ev.preventDefault(); | |
| }); | |
| }, // end submitValidate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.apache.logging.log4j</groupId> | |
| <artifactId>log4j-jcl</artifactId> | |
| <version>2.3</version> | |
| </dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val myXML = <top><test></test></top> | |
| val prettyPrinter = new scala.xml.PrettyPrinter(80, 2) | |
| val formattedString = prettyPrinter.format(myXML) | |
| val fos = new FileOutputStream("outfile.xml") | |
| val fps = new PrintWriter(fos); | |
| fps.write(formattedString) | |
| fps.close() |
NewerOlder