Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

placing image icon on top of batch file

mjmjavaMar 19 2013 — edited Mar 19 2013
i am creating a batch file , now i want to place application specific icon on top of that file , so how can i do it through my code

File batchFile = new File(installationDirectory+ "\\"+ "QTL.bat");
fos = new FileOutputStream(batchFile);
DataOutputStream dos=new DataOutputStream(fos);
dos.writeBytes("set JAVA_HOME="+ "\""+ javaHome+ "\"" +"\n");
dos.writeBytes("set QTL_HOME="+ installationDirectory+ "\n");
dos.writeBytes("cd %QTL_HOME%"+ "\n");


Regards
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 16 2013
Added on Mar 19 2013
3 comments
237 views