shared items

Friday, May 11, 2012

Create EXE for java apps



Launch4j Executable Wrapper

http://sourceforge.net/projects/launch4j/#screenshots
Launch4j is a cross-platform tool for wrapping Java applications distributed as jars in lightweight Windows native executables. The executable can be configured to search for a certain JRE version or use a bundled one, and it's possible to set runtime options, like the initial/max heap size. The wrapper also provides better user experience through an application icon, a native pre-JRE splash screen, a custom process name, and a Java download page in case the appropriate JRE cannot be found.

Wednesday, May 9, 2012

Tortoise SVN asks for password repeatedly!

Tortoise SVN
right click on desktop -> Tortoise SVN-> settings -> saved data -> authentication data (button press 'clear') !
try logging in now again !

Monday, October 10, 2011

Text Overlapping over image ( JSF/Facelets )

CSS:
#_1234bg


{

display:block;

position:absolute;

z-index:0;



}

.c1{width:290px;}

.c2{width:140px;}

.c3{width:100px;}

.c1a{width:130px;padding-left:160px;font-size:10px;font-weight:bold;}

.c2a{width:50px;padding-left:91px;font-size:10px;font-weight:bolder;padding-top: 10px}

.c3a{padding-left:40px;}
 
 
JSF CODE :
<  t:div style="width:800px;height:700px;">
<  t:div id="_1234bg">
<  h:graphicImage id="image1" alt="aa" width="701" value="#{facesContext.externalContext.requestContextPath}/css/wm.png" />



<  h:panelGrid style="position:absolute;font-size:large;margin-left:15px;margin-top:25px;" columns="3" columnClasses="c1, c2, c3 c3a">

<  h:outputText value=" "/>

<  h:outputText value="#{homeManagedBean.account.cy.box1}"/>

<  h:outputText value="#{homeManagedBean.curryr}"/>



<  t:div>





This is specially useful when the user wants to print text overlaid on a background image.

Wednesday, September 21, 2011

Run Jobs on Mainframe from Java using FTP



ftp my.zos.mainframe

userid

password

quote site filetype=jes

put job.txt

quit



http://www.ibm.com/developerworks/systems/library/es-batch-zos.html