This file contains 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
<h:form id="frmButtons"> | |
<h:commandButton id="btnExportWord" class="red" value="#{i18n.exportWord}" | |
style="padding:10px 20px;" action="#{decodeBean.exportToWord}"/> | |
</h:form> |
This file contains 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
RP/CTBB22115/CTBB22115 WI/AS 3JUN13/2003Z 2WAF3O | |
1.JONAS/JULIO MR 2.SILVA/MARIO MR 3.SILVA/JOANA MRS | |
4 SA 223 G 15OCT 2 GRUJNB HK3 2 1800 0750+1 *1A/E* | |
5 SA 286 H 20OCT 7 JNBHKG HK3 B 1655 1225+1 *1A/E* | |
6 SA 287 C 22OCT 2 HKGJNB HK3 2 2350 0715+1 *1A/E* | |
7 SA 222 L 23OCT 3 JNBGRU HK3 B 1040 1700 *1A/E* | |
8 AP CTB +553542494416 - | |
L - A | |
9 TK TL03JUN/CWBB44115 |
This file contains 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
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
public class TestRegex { | |
private static final String PTR_PERSON = "(\\d\\.)(([^\\d ])([a-z/ ]*))"; | |
private static List<String> findPersonDetails(String input) { |
This file contains 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
SELECT CONSTRAINT_NAME, TABLE_NAME FROM USER_CONSTRAINTS WHERE CONSTRAINT_NAME='FK1_MY_CONSTRAINT_NAME'; |
This file contains 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
java.lang.UnsupportedOperationException: This parser does not support specification "null" version "null" |
This file contains 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
-Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl |
This file contains 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
-Xms512m | |
-Xmx512m | |
-XX:PermSize=256m | |
-XX:MaxPermSize=256m-Xms512m | |
-Xmx512m | |
-XX:PermSize=256m | |
-XX:MaxPermSize=256m |
This file contains 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
-Xverify:none |
This file contains 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
-XX:+UseConcMarkSweepGC | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+CMSPermGenSweepingEnabled |
This file contains 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
private JFreeChart createChart(XYDataset dataset, ICarteira car) { | |
// create the chart... | |
final JFreeChart chart = ChartFactory.createTimeSeriesChart( | |
car.getNome(), // title | |
"Tempo", // x axis label | |
"Valor", // y axis label | |
dataset, // data | |
true, // include legend | |
true, // tooltips | |
true // urls |