Entries Published On June, 2017
Create LinkedIn Share button on Website Webpages Customized URL Method
This tutorial shows how to add a LinkedIn Share button using CustomizedURL Method. The complete documentation of this method is shown here, https://developer.linkedin.com/docs/share-on-linkedin Click the icon below to see the Sharer <a href=”https://www.linkedin.com/shareArticle?mini=true&url=https://chillyfacts.com/create-linkedin-share-button-on-website-webpages&title=Create LinkedIn Share button on Website Webpages&summary=chillyfacts.com&source=Chillyfacts” onclick=”window.open(this.href, ‘mywin’, ‘left=20,top=20,width=500,height=500,toolbar=1,resizable=0’); return false;” ><img src=”https://chillyfacts.com/wp-content/uploads/2017/06/LinkedIN.gif” alt=”” width=”54″ height=”20″ /></a> You can update the red …
Export excel java – How to write data into excel sheet using java
This JAVA program shows how to write to excel file. This program can generate .xls file from the program. It uses a External Jar file jxl.jar. You can download it here jxl.jar You have to add this to classpath Project Structure in Eclipse Write_to_excel_file_directly.java package com.chillyfacts.com; import java.io.File; import jxl.Workbook; import jxl.write.*; public class Write_to_excel_file_directly { …