• <menu id="w2i4a"></menu>
  • logo Spire.Doc系列教程

    文檔首頁>>Spire.Doc系列教程>>Spire.Doc功能演示:使用Java在Word文檔上設(shè)置字符間距和段落間距

    Spire.Doc功能演示:使用Java在Word文檔上設(shè)置字符間距和段落間距


    Spire.Doc for Java 是一款專業(yè)的Java Word組件,開發(fā)人員使用它可以輕松地將Word文檔創(chuàng)建、讀取、編輯、轉(zhuǎn)換和打印等功能集成到自己的Java應(yīng)用程序中。

    本文將向您展示如何使用Spire.Doc for Java在Word上設(shè)置字符間距和段落間距。可點(diǎn)擊此處下載最新版測試。

    import com.spire.doc.*;
    import com.spire.doc.documents.Paragraph;
    import com.spire.doc.fields.TextRange;
    
    import java.awt.*;
    import java.io.*;
    
    public class setSpacing {
        public static void main(String[] args)throws IOException {
            //Load the sample document
            Document document= new Document("Sample1.docx");
    
            //Add a new paragraph and append the text
            Paragraph para = new Paragraph(document);
            TextRange textRange1 = para.appendText("Newly added paragraph and set the paragraph spacing and character spacing");
            textRange1.getCharacterFormat().setTextColor(Color.blue);
            textRange1.getCharacterFormat().setFontSize(14);
    
            //Set the spacing before and after paragraph
            para.getFormat().setBeforeAutoSpacing(false);
            para.getFormat().setBeforeSpacing(10);
            para.getFormat().setAfterAutoSpacing(false);
            para.getFormat().setAfterSpacing(10);
    
            //Set the character spacing
            for (DocumentObject object :(Iterable) para.getChildObjects())
            {
                TextRange textRange= (TextRange) object;
                textRange.getCharacterFormat().setCharacterSpacing(3f);
            }
    
            //Insert the paragraph
            document.getSections().get(0).getParagraphs().insert(2, para);
    
            //Save the document to file
            document.saveToFile("Result.docx", FileFormat.Docx);
    
        }
    }

    輸出結(jié)果

    Word格式處理控件Spire.Doc功能演示:使用Java在Word文檔上設(shè)置字符間距和段落間距


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();