Java--Word에서 글꼴 색상 변경

10696 단어 javawordapiopensource
Microsoft Word에서 글꼴 색상을 변경하여 특정 텍스트를 강조 표시하고 작성 중인 문서에 다른 모양을 제공할 수 있습니다. 이 기사에서는 무료 Java 라이브러리를 사용하여 Word에서 지정된 단락 또는 텍스트의 글꼴 색상을 프로그래밍 방식으로 변경하는 방법을 공유합니다.

가져오기 종속성



방법 1: free library (Free Spire.Doc for Java)을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Doc.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 2: 다음 구성을 pom.xml에 추가하여 maven 프로젝트에 jar 종속성을 직접 추가합니다.

<repositories>
   <repository>
      <id>com.e-iceblue</id>
      <name>e-iceblue</name>
      <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
   </repository>
</repositories>
<dependencies>
   <dependency>
      <groupId>e-iceblue</groupId>
      <artifactId>spire.doc.free</artifactId>
      <version>5.2.0</version>
   </dependency>
</dependencies>


▶ 단락의 글꼴 색상 변경




import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.Section;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.documents.ParagraphStyle;

import java.awt.*;

public class ChangeFontColorForParagraph {
    public static void main(String []args){
        //Create a Document instance
        Document document = new Document();
        //Load a Word document
        document.loadFromFile("test.docx");

        //Get the first section
        Section section = document.getSections().get(0);

        //Change text color of the first Paragraph
        Paragraph p1 = section.getParagraphs().get(0);
        ParagraphStyle s1 = new ParagraphStyle(document);
        s1.setName("Color1");
        s1.getCharacterFormat().setTextColor(new Color(244, 132, 48));
        document.getStyles().add(s1);
        p1.applyStyle(s1.getName());

        //Change text color of the third Paragraph
        Paragraph p2 = section.getParagraphs().get(2);
        ParagraphStyle s2 = new ParagraphStyle(document);
        s2.setName("Color2");
        s2.getCharacterFormat().setTextColor(new Color(0, 0, 139));;
        document.getStyles().add(s2);
        p2.applyStyle(s2.getName());

        //Save the result document
        document.saveToFile("ChangeParagraphTextColor.docx", FileFormat.Docx);
    }
}




▶ 특정 텍스트의 글꼴 색상 변경




import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.documents.TextSelection;

import java.awt.*;

public class ChangeFontColorForText {
    public static void main(String []args){
        //Create a Document instance
        Document document = new Document();
        //Load a Word document
        document.loadFromFile("test.docx");

        //Find the text that you want to change font color for
        TextSelection[] text = document.findAllString("marketing", false, true);
        //Change the font color for the searched text
        for (TextSelection selection : text)
        {
            selection.getAsOneRange().getCharacterFormat().setTextColor(Color.red);
        }

        //Save the result document
        document.saveToFile("ChangeCertainTextColor.docx", FileFormat.Docx);

    }
}


좋은 웹페이지 즐겨찾기