- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTextRun.setText()
方法的一些代码示例,展示了XSLFTextRun.setText()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSLFTextRun.setText()
方法的具体详情如下:
包路径:org.apache.poi.xslf.usermodel.XSLFTextRun
类名称:XSLFTextRun
方法名:setText
暂无
代码示例来源:origin: org.apache.poi/poi-ooxml
run.setText(runText);
if (otherRPr != null) {
run.getRPr(true).set(otherRPr);
代码示例来源:origin: stackoverflow.com
XSLFTextRun run1 = p.addNewTextRun();
run1.setText("This is test");
run1.setFontFamily(HSSFFont.FONT_ARIAL);
run1.setFontColor(Color.red);
run1.setFontSize(24);
代码示例来源:origin: stackoverflow.com
XSLFTableRow headerRow = table.addRow();
for(int i = 0; i < 3; i++) {
XSLFTableCell th = headerRow.addCell();
XSLFTextParagraph p = th.addNewTextParagraph();
XSLFTextRun r = p.addNewTextRun();
r.setText("Text");
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public void setText(String text){
clearText();
addNewTextParagraph().addNewTextRun().setText(text);
}
代码示例来源:origin: stackoverflow.com
par.setTextAlign(TextAlign.CENTER);
XSLFTextRun run = par.addNewTextRun();
run.setText("unicode ->\u30B4\u30DF\u7BB1<-");
run.setFontFamily("GE Inspira");
run.setFontSize(12.0);
代码示例来源:origin: stackoverflow.com
XSLFTableRow titleRow = tbl.addRow();
titleRow.setHeight(50);
XSLFTableCell titleCell1 = titleRow.addCell();
XSLFTextParagraph p1 = titleCell1.addNewTextParagraph();
p1.setTextAlign(TextAlign.CENTER);
XSLFTextRun r1 = p1.addNewTextRun();
r1.setText("Column title");
r1.setBold(true);
r1.setFontColor(new Color(0, 104, 145));
titleCell1.setFillColor(new Color(190, 230, 245));
r1.setFontSize(25.0);
titleCell1.setVerticalAlignment(VerticalAlignment.MIDDLE);
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
/**
* ensure that the paragraph contains at least one character.
* We need this trick to correctly measure text
*/
private void ensureNotEmpty(){
XSLFTextRun r = addNewTextRun();
r.setText(" ");
CTTextCharacterProperties endPr = _p.getEndParaRPr();
if(endPr != null) {
if(endPr.isSetSz()) r.setFontSize(endPr.getSz() / 100);
}
}
代码示例来源:origin: stackoverflow.com
par.setTextAlign(TextAlign.CENTER);
XSLFTextRun run = par.addNewTextRun();
run.setText("/\u02CCin\u0259\u02C8v\u0101SH\u0259n/");
run.setFontFamily("DejaVu Serif");
run.setFontSize(12);
par.addLineBreak();
run = par.addNewTextRun();
run.setText("/\u02CCin\u0259\u02C8v\u0101SH\u0259n/");
run.setFontFamily("GE Inspira");
run.setFontSize(12);
代码示例来源:origin: stackoverflow.com
XSLFTextParagraph p = textShape.addNewTextParagraph();
XSLFTextRun r1 = p.addNewTextRun();
r1.setText("The");
r1.setFontColor(Color.blue);
r1.setFontSize(24.);
代码示例来源:origin: org.apache.poi/poi-examples
public static void main(String[] args) throws IOException{
try (XMLSlideShow ppt = new XMLSlideShow()) {
XSLFSlide slide1 = ppt.createSlide();
XSLFSlide slide2 = ppt.createSlide();
XSLFTextBox shape1 = slide1.createTextBox();
shape1.setAnchor(new Rectangle(50, 50, 200, 50));
XSLFTextRun r1 = shape1.addNewTextParagraph().addNewTextRun();
XSLFHyperlink link1 = r1.createHyperlink();
r1.setText("http://poi.apache.org"); // visible text
link1.setAddress("http://poi.apache.org"); // link address
XSLFTextBox shape2 = slide1.createTextBox();
shape2.setAnchor(new Rectangle(300, 50, 200, 50));
XSLFTextRun r2 = shape2.addNewTextParagraph().addNewTextRun();
XSLFHyperlink link2 = r2.createHyperlink();
r2.setText("Go to the second slide"); // visible text
link2.linkToSlide(slide2); // link address
try (FileOutputStream out = new FileOutputStream("hyperlinks.pptx")) {
ppt.write(out);
}
}
}
}
代码示例来源:origin: org.apache.poi/poi-examples
body2.addNewTextParagraph().addNewTextRun().setText("First paragraph");
body2.addNewTextParagraph().addNewTextRun().setText("Second paragraph");
body2.addNewTextParagraph().addNewTextRun().setText("Third paragraph");
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
run.setText(runText);
if (otherRPr != null) {
run.getRPr(true).set(otherRPr);
代码示例来源:origin: org.apache.poi/poi-examples
r1.setText("Paragraph Formatting");
r1.setFontSize(24d);
r1.setFontColor(new Color(85, 142, 213));
p2.setSpaceAfter(300d); // 3 lines after the paragraph
XSLFTextRun r2 = p2.addNewTextRun();
r2.setText("Paragraph properties apply to all text residing within the corresponding paragraph.");
r2.setFontSize(16d);
r3.setText("Run Formatting");
r3.setFontSize(24d);
r3.setFontColor(new Color(85, 142, 213));
XSLFTextRun r4 = p4.addNewTextRun();
r4.setFontSize(16d);
r4.setText(
"Run level formatting is the most granular property level and allows " +
"for the specifying of all low level text properties. The text run is " +
代码示例来源:origin: org.apache.poi/poi-examples
p1.setBullet(true);
XSLFTextRun r1 = p1.addNewTextRun();
r1.setText("Bullet1");
p2.setIndentLevel(1);
XSLFTextRun r2 = p2.addNewTextRun();
r2.setText("Bullet2");
p3.setIndentLevel(2);
XSLFTextRun r3 = p3.addNewTextRun();
r3.setText("Numbered List Item - 1");
p4.setIndentLevel(2);
XSLFTextRun r4 = p4.addNewTextRun();
r4.setText("Numbered List Item - 2");
p5.setIndentLevel(2);
XSLFTextRun r5 = p5.addNewTextRun();
r5.setText("Numbered List Item - 3");
代码示例来源:origin: org.apache.poi/poi-examples
XSLFTextParagraph p1 = bodyPlaceholder.addNewTextParagraph();
p1.setIndentLevel(0);
p1.addNewTextRun().setText("Level1 text");
XSLFTextParagraph p2 = bodyPlaceholder.addNewTextParagraph();
p2.setIndentLevel(1);
p2.addNewTextRun().setText("Level2 text");
XSLFTextParagraph p3 = bodyPlaceholder.addNewTextParagraph();
p3.setIndentLevel(2);
p3.addNewTextRun().setText("Level3 text");
代码示例来源:origin: org.apache.poi/poi-examples
p.setTextAlign(TextAlign.CENTER);
XSLFTextRun r = p.addNewTextRun();
r.setText("Header " + (i + 1));
r.setBold(true);
r.setFontColor(Color.white);
XSLFTextRun r = p.addNewTextRun();
r.setText("Cell " + (i + 1));
if (rownum % 2 == 0)
cell.setFillColor(new Color(208, 216, 232));
代码示例来源:origin: stackoverflow.com
Color fontColor = null;
String fontFamily = null;
double fontSize = 0.0;
boolean italic = false;
boolean bold = false;
boolean underline = false;
for (XSLFTextParagraph paragraph : autoShape.getTextParagraphs()) {
for (XSLFTextRun text : paragraph.getTextRuns()) {
fontColor = text.getFontColor();
fontFamily = text.getFontFamily();
fontSize = text.getFontSize();
italic = text.isItalic();
bold = text.isBold();
underline = text.isUnderline();
}
}
autoShape.clearText();
XSLFTextParagraph addNewTextParagraph = autoShape.addNewTextParagraph();
XSLFTextRun addNewTextRun = addNewTextParagraph.addNewTextRun();
addNewTextRun.setText(values.get(0)[1]);
addNewTextRun.setFontColor(fontColor);
addNewTextRun.setFontFamily(fontFamily);
addNewTextRun.setFontSize(fontSize);
addNewTextRun.setItalic(italic);
addNewTextRun.setBold(bold);
addNewTextRun.setUnderline(underline);
你好,我有一个列表,我试着做 settext从它,例如我知道TextView.setText(Listobject)喜欢TextView.setText(array[index])但它不起作用。我也尝
我正在尝试将 setText() 设置为 Button btnFloor, btnTable; 这不工作 ATM,实际上我正在尝试从 发送数据 FloorsActivity -> TablesActi
import sys from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QMainWindow, QWidget, QLa
setText(CharSequence, TextView.BufferType) 和 setText(CharSequence) 有什么区别,什么时候应该使用它们? 最佳答案 setText (C
想知道在android中哪种方法更快。只为求知。 TextView t; t = (TextView) findViewById(R.id.TextView_ID); int number=5; t.
两者都有效,显然,如果您开始连接,则需要获取字符串以避免显示 int。 问题:哪个是最“优雅”或“推荐”使用的? 谢谢 最佳答案 第二种方法更优雅,因为在内部,TextView(或任何 View 类)
我的编辑文本格式有以下代码,因为它可以接受我没有设置任何输入类型的任何输入:。所以最初我得到的默认输入类型是ABC,现在当我将其更改为?123时(使用ABC/123?Togel按钮),并且在输入某个数
例如,我可以通过简单地执行 setText(R.string.value) 来设置文本。我没有收到编译或运行时错误。我错误地了解到这一点,因为我总是通过从资源中获取我的字符串值来设置文本,例如 set
我正在开发 UDP 程序,但在我的 asynctask 中应用 setText 时遇到问题。基本上在 UDP 服务器上,我只要求输入一个端口,然后服务器应该连接到本地主机和端口。布局中间的 TextV
您好,我正在尝试在循环中将 setText 设置为 JTextArea,但我想这样做,在每个循环中,每一行都将在框架中看到。 我尝试过 Thread.sleep(500),因为我认为循环太快而无法设置
setText() 方法是否总是设置为字符串?如果我们想为文本字段设置一个 Double 值,如何实现? 最佳答案 首先将 Double 转换为字符串: textField.setText(myDou
我是 Android 开发新手。我不明白为什么这会在模拟器中崩溃,当我在 Android 模拟器上运行这个程序时,它打开然后快速关闭,给我一条“不幸的是, Hello World 已停止”消息。
我正在 Android 上开发一个小应用程序,但第二行在 SetText 上显示错误imcInterpretation 包含文本值。 imcVlaue 正在工作,但 imcInterpreter 不工
我有一个 Actor ,我正在使用 moveTo(destinationx, destinationy, time) 来移动它。 问题是 Actor 是一个 TextButton,我需要在运动发生时更
我如何在其他方法中使用textview值?我想将“txtTitle.setText”的 Intent 值传递给其他 Activity (汽车),但我无法在 onclick 方法上使用它。 pu
我是一名初学者程序员,我在我的应用程序中发现了一个错误/问题,这并不能让我安心 W1.setText (numberAsString); W2.setText (numberAsString); W3
如何设置要从抽屉导航中的抽屉标题布局查看的文本? protected void onCreate(Bundle savedInstanceState) { [...] NavigationView
我不明白为什么当我尝试在程序中对 JTextArea 对象进行 .setText() 时会出现运行时错误。在我的主 GUI 类中,我设置了一个创建弹出 JFrame 对象的事件,该 JFrame 中有
在我的项目中,我尝试通过一种方法来暴力破解字典,然后将任何尝试和正确的单词输出到主类的 textField 。 输出应该是 Trying a... Trying b... Trying c... Fo
我正在尝试在 JButton 中获取两行文本 文本应该显示在 和 之间以及/> 和 just like this 之间。但由于某种原因,它在我的 for 循环中不起作用 JButton title
我是一名优秀的程序员,十分优秀!