Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/395.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 如何使用ApachePOI在document.docx中的表单元格中创建TextBox_Java_Apache_Textbox_Apache Poi - Fatal编程技术网

Java 如何使用ApachePOI在document.docx中的表单元格中创建TextBox

Java 如何使用ApachePOI在document.docx中的表单元格中创建TextBox,java,apache,textbox,apache-poi,Java,Apache,Textbox,Apache Poi,我使用Javafx和 我使用apache poi创建了一个表: XWPFDocument document = new XWPFDocument(); XWPFParagraph paragraph = document.createParagraph(); XWPFTable table = document.createTable(4, 3); 并创建了如下段落: XWPFParagraph p1 = table.getRow(0).getCell(2).getParagraphs(

我使用Javafx和

我使用apache poi创建了一个表:

 XWPFDocument document = new XWPFDocument();
 XWPFParagraph paragraph = document.createParagraph();
 XWPFTable table = document.createTable(4, 3);
并创建了如下段落:

XWPFParagraph p1 = table.getRow(0).getCell(2).getParagraphs().get(0);
XWPFRun r1 = p1.createRun();
r1.setText(category_number.getText() + category.toString());
现在,我想在一行的一个单元格中创建一个文本框,但不知道如何将单元格和行地址设置为文本框,以及如何设置文本和对齐文本框

请帮助我:

在*.docx中的文本框是文档内容中的一个形状。创建形状尚未在XWPF中实现。但是可以使用底层ooxml模式类来完成

例如:

import java.io.FileOutputStream;

import org.apache.poi.xwpf.usermodel.*;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTPicture;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTxbxContent;

import com.microsoft.schemas.vml.CTGroup;
import com.microsoft.schemas.vml.CTShape;

import org.w3c.dom.Node;

public class CreateWordTextBoxInTable {

 public static void main(String[] args) throws Exception {

  XWPFDocument document= new XWPFDocument();

  XWPFParagraph paragraph = document.createParagraph();
  XWPFRun run = paragraph.createRun();  
  run.setText("The table:");

  XWPFTable table = document.createTable(4, 3);

  // table header row
  for (int c = 0; c < 3; c++ ) {
   paragraph = table.getRow(0).getCell(c).getParagraphArray(0);
   if (paragraph == null) paragraph = table.getRow(0).getCell(c).addParagraph();
   run = paragraph.createRun(); 
   run.setText("Column " + (c+1));
  }

  // get run in cell for text box
  XWPFTableCell cell = table.getRow(1).getCell(1);
  paragraph = cell.getParagraphArray(0);
  if (paragraph == null) paragraph = cell.addParagraph();
  run = paragraph.createRun();  

  // create inline text box in run
  // first crfeate group shape
  CTGroup ctGroup = CTGroup.Factory.newInstance();

  // now add shape to group shape
  CTShape ctShape = ctGroup.addNewShape();
  ctShape.setStyle("width:100pt;height:36pt");
  // add text box content to shape
  CTTxbxContent ctTxbxContent = ctShape.addNewTextbox().addNewTxbxContent();
  XWPFParagraph textboxparagraph = new XWPFParagraph(ctTxbxContent.addNewP(), (IBody)cell);
  textboxparagraph.setAlignment(ParagraphAlignment.CENTER);
  XWPFRun textboxrun = textboxparagraph.createRun();
  textboxrun.setText("The TextBox content...");
  textboxrun.setFontSize(10);

  // add group shape as picture to the run
  Node ctGroupNode = ctGroup.getDomNode(); 
  CTPicture ctPicture = CTPicture.Factory.parse(ctGroupNode);
  CTR cTR = run.getCTR();
  cTR.addNewPict();
  cTR.setPictArray(0, ctPicture);

  FileOutputStream out = new FileOutputStream("test.docx"); 
  document.write(out);
  out.close();

 }
}

这段代码是使用apache poi 4.0.1测试的,需要在类路径中使用ooxml-schemas-1.4.jar。

看起来与javafx无关-这是怎么回事?setText input是javafx的一个组件非常感谢,我的问题已经解决,您的技能令人惊讶,非常感谢。