[ 
https://issues.apache.org/jira/browse/TIKA-1181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13788520#comment-13788520
 ] 

Leo commented on TIKA-1181:
---------------------------

Thank Micheal for your answer. 
Yes I know that most parsers don't do this either, but I need to have one that 
does. The AdvancedRTFEditorKit does. But the AdvancedRTFEditorKit doesn't do 
Chinese character sets.
Maybe I can combine the 2 myself somehow. I will have look what I can do. 
Thanks for your help!

> RTFParser not keeping HTML font colors and underscore tags.
> -----------------------------------------------------------
>
>                 Key: TIKA-1181
>                 URL: https://issues.apache.org/jira/browse/TIKA-1181
>             Project: Tika
>          Issue Type: Bug
>          Components: parser
>    Affects Versions: 1.4
>         Environment: Windows server 2008
>            Reporter: Leo
>              Labels: RTFParser
>
> Hi,
> I'm having problems with this code. It does not put the font colors and 
> underscores "<u></u>" tags in the HTML from the RTF string. Is there anything 
> I can do to put them there? 
> Code:
> InputStream in = new ByteArrayInputStream(rtfString.getBytes("UTF-8"));  
>                  
> org.apache.tika.parser.rtf.RTFParser parser = new 
> org.apache.tika.parser.rtf.RTFParser();
>                                  
> Metadata metadata = new Metadata();
> StringWriter sw = new StringWriter();
> SAXTransformerFactory factory = (SAXTransformerFactory)
>                            SAXTransformerFactory.newInstance();
> TransformerHandler handler = factory.newTransformerHandler();
>                   
> handler.getTransformer().setOutputProperty(OutputKeys.METHOD, "xml");
>                   
> handler.getTransformer().setOutputProperty(OutputKeys.INDENT, "no");
> handler.setResult(new StreamResult(sw));
> parser.parse(in, handler, metadata, new ParseContext());
> String xhtml = sw.toString();
>                   
> xhtml = xhtml.replaceAll("\r\n", "<br>\r\n");
> Thanks for looking at it.
> Leo



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to