本文整理汇总了Java中org.apache.poi.xssf.usermodel.XSSFHyperlink类的典型用法代码示例。如果您正苦于以下问题:Java XSSFHyperlink类的具体用法?Java XSSFHyperlink怎么用?Java XSSFHyperlink使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
XSSFHyperlink类属于org.apache.poi.xssf.usermodel包,在下文中一共展示了XSSFHyperlink类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: setHyperlink
import org.apache.poi.xssf.usermodel.XSSFHyperlink; //导入依赖的package包/类
/**
* セルにハイパーリンクを設定する。
*
* @param cell セル
* @param type リンクタイプ
* @param address ハイパーリンクアドレス
* @see org.apache.poi.common.usermodel.Hyperlink
*/
public static void setHyperlink( Cell cell, HyperlinkType hyperlinkType, String address) {
Workbook wb = cell.getRow().getSheet().getWorkbook();
CreationHelper createHelper = wb.getCreationHelper();
Hyperlink link = createHelper.createHyperlink( hyperlinkType);
if ( link instanceof HSSFHyperlink) {
(( HSSFHyperlink) link).setTextMark( address);
} else if ( link instanceof XSSFHyperlink) {
(( XSSFHyperlink) link).setAddress( address);
}
cell.setHyperlink( link);
}
开发者ID:excella-core,项目名称:excella-core,代码行数:24,代码来源:PoiUtil.java
示例2: populateRow
import org.apache.poi.xssf.usermodel.XSSFHyperlink; //导入依赖的package包/类
private void populateRow(Row row, User user) {
UserBinding binding = new UserBinding(user);
int columnIndex = 0;
addTextCell(row, columnIndex++, binding.userName().getSafely());
addTextCell(row, columnIndex++, binding.lastName().getSafely());
addTextCell(row, columnIndex++, binding.firstName().getSafely());
XSSFCreationHelper helper= (XSSFCreationHelper) workbook.getCreationHelper();
XSSFHyperlink emailLink = helper.createHyperlink(Hyperlink.LINK_EMAIL);
String emailAddress = binding.email().getSafely();
emailLink.setAddress("mailto:" + emailAddress);
addLinkToCell(addTextCell(row, columnIndex++, emailAddress), emailLink);
if (binding.active().getSafely()) {
addTextCell(row, columnIndex++, "Oui");
}
else {
addTextCell(row, columnIndex++, "Non");
}
if (binding.creationDate().getSafely() != null) {
addDateCell(row, columnIndex++, binding.creationDate().getSafely());
} else {
addTextCell(row, columnIndex++, "");
}
if (binding.lastUpdateDate().getSafely() != null) {
addDateCell(row, columnIndex++, binding.lastUpdateDate().getSafely());
} else {
addTextCell(row, columnIndex++, "");
}
if (binding.lastLoginDate().getSafely() != null) {
addDateCell(row, columnIndex++, binding.lastLoginDate().getSafely());
} else {
addTextCell(row, columnIndex++, "");
}
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:41,代码来源:UserExcelTableExport.java
注:本文中的org.apache.poi.xssf.usermodel.XSSFHyperlink类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论