2016-10-29 13 views
1

The current output snapshotapache poiを使って特定の単語文書の色を変更するにはどうすればよいですか?上記

The output which I want

の.docxのスナップショットであり、以下のコードサンプルコードで、私はそれは@で置き換えられた後aの色を変更したいです。 r.setColor("DC143C")は動作しません:

for (XWPFParagraph p : docx.getParagraphs()) { 
     List<XWPFRun> runs = p.getRuns(); 
     if (runs != null) { 
      for (XWPFRun r : runs) { 
       String origText = r.getText(0); 
       if (origText != null && origText.contains("a")) { 
        origText = origText.replace("a", "@"); 
        r.setText(origText, 0); 
       } 
      } 
     } 
    } 
+0

'r.setColor( "DC143C");' 'r.setText(origText、0)の後に置かれ;'は私のために動作します。 –

+0

これは私のためには機能しません。 @AxelRichter –

+0

さらに詳しい情報が必要です。少なくともWord文書の画像。どこかにアップロードされたサンプル文書を改善する。 –

答えて

1

必要がこの文字は、独自の実行である必要がありますちょうど1文字の色を変更する場合。これは、ランだけがスタイリングできるからです。

テキストを含む文書がすでに存在する場合は、既存のすべての実行と複数の実行可能な分割を実行する必要があります。結果として、個別にスタイルされるべき各弦部分は、それが1つの文字である場合にも、それ自身のランでなければならない。

例:

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

import java.awt.Desktop; 

import org.apache.poi.openxml4j.exceptions.InvalidFormatException; 

public class WordReadAndWrite { 

public static void main(String[] args) throws IOException, InvalidFormatException { 

    XWPFDocument doc = new XWPFDocument(new FileInputStream("source.docx")); 

    for (XWPFParagraph p : doc.getParagraphs()) { //go through all paragraphs 
    int runNumber = 0; 
    while (runNumber < p.getRuns().size()) { //go through all runs, we cannot use for each since we will possibly insert new runs 
    XWPFRun r = p.getRuns().get(runNumber); 
    String runText = r.getText(0); 
    if (runText != null && runText.contains("a")) { //if we have a run with an "a" in it, then 
    char[] runChars = runText.toCharArray(); 
    StringBuffer sb = new StringBuffer(); 
    for (int charNumber = 0; charNumber < runChars.length; charNumber++) { //go through all characters in that run  
     if (runChars[charNumber] == 'a') { //if the charcter is an 'a' then  
     r.setText(sb.toString(), 0); //set all characters, which are current buffered, as the text of the actual run 
     r = p.insertNewRun(++runNumber); //insert new run for the '@' as the replacement for the 'a' 
     r.setText("@", 0); 
     r.setColor("DC143C"); 
     r = p.insertNewRun(++runNumber); //insert new run for the next characters 
     sb = new StringBuffer(); //empty buffer 
     } else { 
     sb.append(runChars[charNumber]); //buffer all characters which are not 'a's 
     } 
    } 
    r.setText(sb.toString(), 0); //set all characters, which are current buffered, as the text of the actual run 
    } 
    runNumber++; 
    } 
    } 


    doc.write(new FileOutputStream("result.docx")); 
    doc.close(); 

    System.out.println("Done"); 
    Desktop.getDesktop().open(new File("result.docx")); 

} 
} 
+0

omg!どうもありがとう!私は昨日から回答を探していましたが、私はランニングを分割する漠然とした絵を持っていましたが、それから私はどのようにするべきか分かりませんでした。ドキュメンテーションは十分ではありませんか、あるいは私は答えのための正しい場所を見ていないかもしれません。あなたの例は、私が探していた答えです。どうもありがとう! –

関連する問題