In Excel, you can create a hyperlink to a web page, a file, an email address or create an image hyperlink. In this article, I’m going to show you how to add these hyperlinks to an Excel file programmatically in Java by using Free Spire.XLS for Java API. Before using the following code, you need to download Free Spire.XLS for Java API, unzip the package and then add Spire.Xls.jar in the lib folder into your project. If you’re creating maven projects, you can install Free Spire.XLS for Java API from maven repository . Add hyperlinks import com.spire.xls.ExcelPicture ; import com.spire.xls.ExcelVersion ; import com.spire.xls.HyperLink ; import com.spire.xls.Workbook ; import com.spire.xls.Worksheet ; public class AddHyperlinks { public static void main ( String [] args) throws Exception { //Create a Workbook instance Workbook workbook = new Workbook(); ...
A blog about Microsoft Office and PDF document development using .NET and Java.